forked from logseq/marketplace
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugins.json
2578 lines (2578 loc) · 83.4 KB
/
plugins.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"datetime": 1675603919464,
"packages": [
{
"title": "Cobra Theme",
"description": "If Cobra Kai had a Logseq theme this would be it! (Made for fans of dark-mode).",
"author": "Santi Younger",
"repo": "santiyounger/Cobra",
"icon": "icon.png",
"theme": true,
"id": "cobra-theme",
"addedAt": 1634165328000
},
{
"title": "flomo_memos_sync",
"description": "同步 flomo 笔记至 logseq",
"repo": "duiliuliu/logseq-flomo-plugin",
"author": "duiliuliu",
"icon": "icon.png",
"id": "flomo_memos_sync",
"addedAt": 1652944875000
},
{
"title": "Harmony Theme",
"description": "Minimalistic custom dark and white themes keeping the classic approach of the standard Logseq theme",
"author": "Dmytro Dubinin",
"repo": "dmytrodubinin/Harmony-theme-for-Logseq",
"icon": "./logo.png",
"theme": true,
"id": "harmony-theme",
"addedAt": 1649430404000
},
{
"title": "Log-Stats",
"description": "Analyse your graph's Stats",
"repo": "QWxleA/log-stats",
"author": "Alex Qwxlea",
"icon": "icon.png",
"id": "log-stats",
"addedAt": 1649788751000
},
{
"title": "LogLink Integration (beta)",
"description": "Send text, location and images to your Logseq graph from mobile apps like Telegram",
"repo": "hankhank10/loglink-plugin",
"author": "hankhank10",
"icon": "icon.png",
"effect": true,
"id": "loglink-integration",
"addedAt": 1672937968000
},
{
"title": "Add PARA Properties Into Page",
"description": "Add some commands to easily add properties related to my PARA workflow.",
"author": "George Guimarães",
"repo": "georgeguimaraes/logseq-plugin-add-PARA-properties",
"icon": "icon.png",
"theme": false,
"id": "logseq-add-para-properties",
"addedAt": 1668437633000
},
{
"title": "Admonition Panels",
"description": "A collection of styles for Admonition Panels",
"author": "Nick Martin",
"repo": "nmartin84/admonition-panels",
"icon": "./icon.png",
"id": "logseq-admonition-panels",
"addedAt": 1662599710000
},
{
"title": "Agenda",
"description": "An agenda manager plugin for logseq",
"author": "haydenull",
"repo": "haydenull/logseq-plugin-agenda",
"icon": "icon.png",
"effect": true,
"id": "logseq-agenda",
"addedAt": 1646486302000
},
{
"title": "All Day Theme",
"description": "A clean theme styled for high readability and minimal eye strain.",
"repo": "tobealive/logseq-allday-theme",
"author": "Turiiya",
"icon": "icon.png",
"theme": true,
"id": "logseq-allday-theme",
"addedAt": 1639551976000
},
{
"title": "Logseq Anki Sync",
"description": "An logseq to anki syncing plugin with superpowers - image occlusion, card direction, incremental cards, and a lot more.",
"author": "debanjandhar12",
"repo": "debanjandhar12/logseq-anki-sync",
"icon": "./icon.png",
"effect": true,
"sponsors": [
"https://www.buymeacoffee.com/debanjandhar12"
],
"id": "logseq-anki-sync",
"addedAt": 1639308679000
},
{
"title": "Another Embed",
"description": "This plugin provides 2 extra ways to embed blocks/pages.",
"author": "sethyuan",
"repo": "sethyuan/logseq-plugin-another-embed",
"icon": "./icon.png",
"effect": true,
"id": "logseq-another-embed",
"addedAt": 1659419493000
},
{
"title": "Arc Theme",
"description": " A Logseq theme based on Arc by The Browser Company",
"author": "@andyburris",
"repo": "andyburris/logseq-arc-theme",
"icon": "arc-icon.png",
"theme": true,
"id": "logseq-arc-theme",
"addedAt": 1664407086000
},
{
"title": "Atlas Theme",
"description": "Atlas theme provides a pure and distraction-free experience with always a dark sidebar.",
"author": "Seth Fair",
"repo": "sethfair/logseq-atlas-theme",
"icon": "icon.png",
"theme": true,
"id": "logseq-atlas-theme",
"addedAt": 1635888951000
},
{
"title": "Atmos theme",
"description": "A theme inspired by One Dark Pro",
"author": "Mat4m0",
"repo": "Mat4m0/logseq-atmos-theme",
"icon": "icon.png",
"theme": true,
"id": "logseq-atmos-theme",
"addedAt": 1663563222000
},
{
"title": "Automatic Linker",
"description": "A plugin to automatically link to existing pages while typing or parse a block for potential links",
"author": "Aryan Sawhney",
"repo": "sawhney17/logseq-automatic-linker",
"icon": "./logo.png",
"sponsors": [
"https://www.buymeacoffee.com/sawhney17"
],
"id": "logseq-automatic-linker",
"addedAt": 1651697819000
},
{
"title": "Awesome links",
"description": "Favicons for external links, page icons for internal",
"author": "yoyurec",
"repo": "yoyurec/logseq-awesome-links",
"icon": "icon.png",
"sponsors": [
"https://www.buymeacoffee.com/yoyurec"
],
"effect": true,
"id": "logseq-awesome-links",
"addedAt": 1663885581000
},
{
"title": "Awesome Styler",
"description": "Totally customizable theme with presets: colors, backgrounds, fonts and sizes, etc...",
"author": "yoyurec",
"repo": "yoyurec/logseq-awesome-styler",
"icon": "icon.png",
"sponsors": [
"https://www.buymeacoffee.com/yoyurec"
],
"effect": true,
"id": "logseq-awesome-styler",
"addedAt": 1664733642000
},
{
"title": "Awesome UI",
"description": "Reworked, simplified, fixed and pumped-up Logseq! Layout, components, etc...",
"author": "yoyurec",
"repo": "yoyurec/logseq-awesome-ui",
"icon": "icon.png",
"sponsors": [
"https://www.buymeacoffee.com/yoyurec"
],
"effect": true,
"id": "logseq-awesome-ui",
"addedAt": 1664472306000
},
{
"title": "Banners for Logseq",
"description": "Enliven your notes with custom Notion style banners and icons!",
"author": "Aryan Sawhney & Yurii Piskun",
"repo": "yoyurec/logseq-banners-plugin",
"icon": "./logo.png",
"sponsors": [
"https://www.buymeacoffee.com/sawhney17",
"https://www.buymeacoffee.com/yoyurec"
],
"effect": true,
"id": "logseq-banners-plugin",
"addedAt": 1656355151000
},
{
"title": "Batch Ops",
"description": "Perform queries on the current graph and batch process on the results.",
"author": "sethyuan",
"repo": "sethyuan/logseq-plugin-batch-op",
"icon": "./icon.png",
"id": "logseq-batch-op",
"addedAt": 1656070651000
},
{
"title": "Bear Theme",
"description": "You're braver than you believe, stronger than you seem and smarter than you think. A bear theme for Logseq",
"author": "Alexander Rink",
"repo": "rcvd/logseq-bear-theme",
"icon": "icon.png",
"theme": true,
"id": "logseq-bear-theme",
"addedAt": 1637514822000
},
{
"title": "Bionic Speedreader",
"description": "A plugin to help read faster, with better comprehension and more retention.",
"author": "Aryan Sawhney",
"repo": "sawhney17/logseq-bionic-speedreader",
"icon": "./icon.png",
"effect": true,
"sponsors": [
"https://www.buymeacoffee.com/sawhney17"
],
"id": "logseq-bionic-speedreader",
"addedAt": 1653827074000
},
{
"title": "Block Calendar",
"description": "Render a calendar in block, so you can put it onto right sidebar..",
"author": "vipzhicheng",
"repo": "vipzhicheng/logseq-plugin-block-calendar",
"icon": "icon.png",
"sponsors": [
"https://www.buymeacoffee.com/vipzhicheng"
],
"effect": true,
"id": "logseq-block-calendar",
"addedAt": 1657782839000
},
{
"title": "Block to page",
"description": "Turn block into page",
"author": "hyrijk",
"icon": "icon.png",
"repo": "hyrijk/logseq-plugin-block-to-page",
"id": "logseq-block-to-page",
"addedAt": 1632930559000
},
{
"title": "Block Navigation",
"description": "Block navigation shortcuts",
"author": "KerfuffleV2",
"repo": "kerfufflev2/logseq-plugin-blocknav",
"id": "logseq-blocknav",
"addedAt": 1653928741000
},
{
"title": "Bonofix theme",
"description": "A clean theme focus on bujo and long time focusing experience",
"repo": "sansui233/logseq-bonofix-theme",
"author": "Sansui233",
"icon": "icon.png",
"theme": true,
"id": "logseq-bonofix-theme",
"addedAt": 1630999419000
},
{
"title": "Browser",
"description": "A browser plugin for logseq",
"author": "haydenull",
"repo": "haydenull/logseq-plugin-browser",
"icon": "icon.png",
"id": "logseq-browser",
"addedAt": 1642408210000
},
{
"title": "BuJo theme",
"description": "A theme inspired by Bullet Journals",
"author": "PiotrSss & stdword",
"repo": "stdword/logseq-bujo-theme",
"icon": "icon.png",
"theme": true,
"id": "logseq-bujo-theme",
"addedAt": 1668223357000
},
{
"title": "Bullet Threading",
"description": "Add bullet threading to your active blocks in Logseq.",
"author": "pengx17",
"icon": "./logo.png",
"repo": "pengx17/logseq-plugin-bullet-threading",
"id": "logseq-bullet-threading",
"addedAt": 1640832284000
},
{
"title": "Calendar Plugin",
"description": "Sync your logseq daily note with your google, icloud or outlook calendar",
"author": "Aryan Sawhney",
"repo": "sawhney17/logseq-calendars-plugin",
"icon": "./icon.png",
"sponsors": [
"https://www.buymeacoffee.com/sawhney17"
],
"effect": true,
"id": "logseq-calendars-plugin",
"addedAt": 1643369830000
},
{
"title": "logseq-calview-plugin",
"name": "logseq-calview-plugin",
"description": "This plugin offers a calendar from within Logseq that captures your blocks with event parameters in a calendar view.",
"author": "hkgnp",
"repo": "hkgnp/logseq-calview-plugin",
"icon": "./icon.svg",
"id": "logseq-calview-plugin",
"addedAt": 1645373555000
},
{
"title": "Logseq Case Converter",
"name": "Logseq Case converter",
"description": "A utility to quickly change the casing of a block",
"author": "Aryan Sawhney",
"repo": "sawhney17/logseq-case-converter",
"icon": "icon.png",
"sponsors": [
"https://www.buymeacoffee.com/sawhney17"
],
"id": "logseq-case-converter",
"addedAt": 1644828941000
},
{
"title": "Catppuccin",
"description": "🦫 Soothing pastel theme for Logseq",
"author": "Soumik (griimick)",
"repo": "catppuccin/logseq",
"icon": "icon.png",
"sponsors": [
"https://opencollective.com/catppuccin"
],
"theme": true,
"id": "logseq-catppuccin",
"addedAt": 1675028902000
},
{
"title": "Char Spacing",
"description": "Add space between Chinese and ASCII characters to make document look nicer.",
"author": "sethyuan",
"repo": "sethyuan/logseq-plugin-charspacing",
"icon": "./icon.png",
"effect": true,
"id": "logseq-charspacing",
"addedAt": 1639475288000
},
{
"title": "logseq-chartrender-plugin",
"name": "logseq-chartrender-plugin",
"description": "Create pie, line, bar and area charts using block data. Allows changing of chart type and colours on the fly!",
"author": "hkgnp",
"repo": "hkgnp/logseq-chartrender-plugin",
"icon": "./icon.svg",
"id": "logseq-chartrender-plugin",
"addedAt": 1640968345000
},
{
"title": "Logseq Chinese Tools",
"description": "This Logseq plugin enables user to convert simplified/traditional Chinese, and adding chinese aliases to a page",
"author": "Chang-I Ng",
"repo": "piobmx/logseq-chinese-tools",
"icon": "wen.png",
"theme": false,
"id": "logseq-chinese-tools",
"addedAt": 1659905299000
},
{
"title": "Chocolate 🍫",
"description": "A rich, yummy, delicious theme for Logseq.",
"author": "nmartin84",
"repo": "nmartin84/logseq-chocolate",
"icon": "icon.png",
"theme": true,
"id": "logseq-chocolate",
"addedAt": 1643595616000
},
{
"title": "Citation Manager",
"description": "A 100% local plugin to integrate with *any* bibtex compatible markdown editor including Zotero and Paperpil",
"author": "Aryan Sawhney",
"repo": "sawhney17/logseq-citation-manager",
"icon": "./icon.png",
"sponsors": [
"https://www.buymeacoffee.com/sawhney17"
],
"effect": true,
"id": "logseq-citation-manager",
"addedAt": 1657354477000
},
{
"title": "Classy",
"description": "Facilitates otherwise impossible custom stylesheets by applying classes to blocks identified in custom queries.",
"author": "Mario T. Lanza",
"repo": "mlanza/logseq-classy",
"icon": "./classy.svg",
"effect": true,
"id": "logseq-classy",
"addedAt": 1652358745000
},
{
"title": "logseq-clock-plugin",
"name": "logseq-clock-plugin",
"description": "This simple plugin puts in a clock in your toolbar. Offers the option to show seconds or in 12/24 hour formats.",
"author": "hkgnp",
"repo": "hkgnp/logseq-clock-plugin",
"icon": "./icon.svg",
"id": "logseq-clock-plugin",
"addedAt": 1669778695000
},
{
"title": "Code Formatter",
"description": "Format your code block in logseq.",
"author": "PerfectPan",
"repo": "PerfectPan/logseq-plugin-code-formatter",
"id": "logseq-code-formatter",
"addedAt": 1668355462000
},
{
"title": "Column-Layout",
"description": "If you're using wide monitors, you can place journals, linked references, and journal queries side by side.",
"author": "YU000jp",
"repo": "YU000jp/Logseq-column-Layout",
"icon": "./icon.svg",
"repository": "https://github.com/YU000jp/Logseq-column-Layout.git",
"sponsors": [
"https://www.buymeacoffee.com/yu000japan"
],
"id": "logseq-column-layout",
"addedAt": 1662852627000
},
{
"title": "Comment block",
"description": "An automatic block comment history.",
"author": "vipzhicheng",
"repo": "vipzhicheng/logseq-plugin-comment-block",
"icon": "./icon.png",
"sponsors": [
"https://www.buymeacoffee.com/vipzhicheng"
],
"id": "logseq-comment-block",
"addedAt": 1638514760000
},
{
"title": "Copy Code",
"description": "Copy code from code blocks to your clipboard",
"repo": "vyleung/logseq-copy-code-plugin",
"author": "vyleung",
"icon": "icon.png",
"effect": true,
"id": "logseq-copy-code-plugin",
"addedAt": 1652029079000
},
{
"title": "Craft Theme",
"description": "Almost all creativity requires purposeful play. A craft theme for Logseq",
"author": "Alexander Rink",
"repo": "rcvd/logseq-craft-theme",
"icon": "icon.png",
"theme": true,
"id": "logseq-craft-theme",
"addedAt": 1644263915000
},
{
"title": "Customized Github Theme",
"description": "A customized Github like theme",
"author": "Daniel Webber",
"repo": "mendax1234/logseq-cusgit-theme",
"icon": "icon.png",
"theme": true,
"id": "logseq-cusgit-theme",
"addedAt": 1653576513000
},
{
"title": "logseq-custom-workflows",
"description": "Create custom workflows for logseq similar to `command enter` for task management",
"author": "Aryan Sawhney",
"repo": "sawhney17/logseq-custom-workflow-plugin",
"icon": "./icon.png",
"sponsors": [
"https://www.buymeacoffee.com/sawhney17"
],
"id": "logseq-custom-workflows",
"addedAt": 1647273285000
},
{
"title": "Logseq Cuvee",
"description": "Export queried data to CSV",
"repo": "QWxleA/logseq-cuvee",
"author": "Alex Qwxlea",
"icon": "icon.png",
"id": "logseq-cuvee",
"addedAt": 1650540959000
},
{
"title": "D42ker Logseq",
"description": "A darker Logseq theme.",
"author": "LeonWong0609",
"repo": "LeonWong0609/D42ker-Logseq",
"icon": "icon.png",
"theme": true,
"id": "logseq-d42ker-theme",
"addedAt": 1634056271000
},
{
"title": "Date-Between",
"description": "Display date between today",
"author": "Cologler",
"repo": "Cologler/logseq-date-between-typescript",
"id": "logseq-date-between",
"addedAt": 1675332883000
},
{
"title": "logseq-datenlp-plugin",
"name": "logseq-datenlp-plugin",
"description": "This super simple plugin uses NLP to parse your content for dates and times so that they can be easily tracked through your yournal pages!",
"author": "hkgnp",
"repo": "hkgnp/logseq-datenlp-plugin",
"icon": "./icon.svg",
"effect": true,
"id": "logseq-datenlp-plugin",
"addedAt": 1642436252000
},
{
"title": "Logseq DateTag Plugin",
"name": "Logseq DateTag Plugin",
"description": "A utility to append the creation date of a block as a tag. Requires block timestamps to be enabled in settings",
"author": "Aryan Sawhney",
"repo": "sawhney17/logseq-datetag-plugin",
"icon": "icon.png",
"sponsors": [
"https://www.buymeacoffee.com/sawhney17"
],
"id": "logseq-datetag-plugin",
"addedAt": 1644179668000
},
{
"title": "Days",
"description": "Generate a calendar with all days related to a topic highlighted. A topic is either a page or a block.",
"author": "sethyuan",
"repo": "sethyuan/logseq-plugin-days",
"icon": "./icon.png",
"effect": true,
"id": "logseq-days",
"addedAt": 1667209371000
},
{
"title": "Logseq Deadline Countdown",
"description": "Counts how many days left until the deadline.",
"author": "xxchan",
"repo": "xxchan/logseq-deadline-countdown",
"effect": true,
"id": "logseq-deadline-countdown",
"addedAt": 1643916719000
},
{
"title": "Dev theme",
"description": "A theme inspired by Dev.to & Figma.",
"author": "pengx17",
"repo": "pengx17/logseq-dev-theme",
"icon": "icon.png",
"theme": true,
"id": "logseq-dev-theme",
"addedAt": 1630664401000
},
{
"title": "Developer Theme",
"description": "A more developer-friendly minimalist theme.",
"author": "unickcheng",
"repo": "UNICKCHENG/logseq-developer-theme",
"theme": true,
"id": "logseq-developer-theme",
"addedAt": 1670653958000
},
{
"title": "Diagrams as Code",
"description": "Create diagrams from textual representation (aka 'Diagrams as Code') within Logseq",
"author": "npgrosser",
"repo": "npgrosser/logseq-diagrams-as-code",
"icon": "icon.png",
"id": "logseq-diagrams-as-code",
"addedAt": 1645403023000
},
{
"title": "Discord Like Dark Theme",
"description": "Discord Like Dark Theme",
"author": "dale502",
"repo": "dale502/logseq-discord-like-dark-theme",
"theme": true,
"id": "logseq-dicord-like-dark-theme",
"addedAt": 1632642488000
},
{
"title": "Logseq Dictionary",
"name": "Logseq Dictionary",
"description": "Add definitions to your graph.",
"author": "Stephen Solka",
"repo": "trashhalo/logseq-dictionary",
"icon": "icon.png",
"sponsors": [
"https://ko-fi.com/trashhalo"
],
"id": "logseq-dictionary",
"addedAt": 1662207076000
},
{
"title": "Doc View Exporter",
"description": "Show page in a more document like look and provide quick exporting.",
"author": "sethyuan",
"repo": "sethyuan/logseq-plugin-doc",
"icon": "./icon.png",
"effect": true,
"id": "logseq-doc",
"addedAt": 1640320979000
},
{
"title": "Dracula theme",
"description": "🧛 Dark theme for Logseq.",
"author": "slybouhafs",
"repo": "dracula/logseq",
"icon": "icon.svg",
"theme": true,
"id": "logseq-dracula-theme",
"addedAt": 1632324168000
},
{
"title": "Dynamic Property Lookup",
"description": "This plugin allows you to look up properties on a target page and place the value of the property in your text.",
"author": "Alexander Lais",
"repo": "peanball/logseq-dynamic-lookup",
"icon": "logo.png",
"id": "logseq-dynamic-lookup",
"addedAt": 1667551686000
},
{
"title": "Logseq-ECharts",
"description": "A plugin of logseq which integrates with ECharts",
"repo": "guzhongren/logseq-echarts",
"author": "guzhongren",
"icon": "icon.png",
"id": "logseq-echarts-plugin",
"addedAt": 1661573262000
},
{
"title": "E-ink Theme",
"description": "A pure E-ink theme for black-and-white monitors.",
"author": "DiamondYuan",
"repo": "DiamondYuan/logseq-eink-theme",
"theme": true,
"id": "logseq-eink-theme",
"addedAt": 1632400068000
},
{
"title": "Emoji picker",
"description": "A plugin that lets you pick emoji (fork from sample).",
"author": "walsvid",
"repo": "walsvid/logseq-emoji-picker-fork",
"icon": "./logo.png",
"id": "logseq-emoji-picker-fork",
"addedAt": 1657039359000
},
{
"title": "Extensions plus",
"description": "A plugin to enhance functions of Logseq's internal extensions.",
"repo": "xyhp915/logseq-extensions-plus",
"author": "xyhp915",
"icon": "icon.png",
"effect": true,
"sponsors": [
"https://opencollective.com/logseq"
],
"id": "logseq-extensions-plus",
"addedAt": 1670048597000
},
{
"title": "logseq-extract-plugin",
"description": "The logseq-extract-plugin is used to extract bold and highlighted text from a block and all its nested blocks.",
"author": "Sidharth Panwar",
"repo": "sidharth-panwar/logseq-extract-plugin",
"icon": "./icon.svg",
"id": "logseq-extract-plugin",
"addedAt": 1633371656000
},
{
"title": "Fenced code plus",
"description": "A Logseq plugin for missing types of fenced code.",
"repo": "xyhp915/logseq-fenced-code-plus",
"author": "xyhp915",
"icon": "icon.png",
"effect": true,
"sponsors": [
"https://opencollective.com/logseq"
],
"id": "logseq-fenced-code-plus",
"addedAt": 1651558701000
},
{
"title": "File Manager",
"description": "A file manager plugin for logseq (Search unused assets file).",
"author": "haydenull",
"repo": "haydenull/logseq-plugin-file-manager",
"icon": "icon.png",
"effect": true,
"id": "logseq-file-manager",
"addedAt": 1650425765000
},
{
"title": "Logseq Find and Replace Plugin",
"description": "Find and Replace across your entire database",
"author": "Aryan Sawhney",
"repo": "sawhney17/logseq-find-replace",
"icon": "./icon.png",
"sponsors": [
"https://www.buymeacoffee.com/sawhney17"
],
"id": "logseq-find-and-replace",
"addedAt": 1647794777000
},
{
"title": "flomo sync",
"description": "Sync flomo to logseq",
"author": "Seyee and StanleyWind",
"repo": "SeyeeL/logseq-flomo-plugin",
"icon": "icon.png",
"id": "logseq-flomo-plugin",
"addedAt": 1651841150000
},
{
"title": "Flow Theme",
"description": "Minimalistic Theme that's soft around the edges and comes in 30+ flavors.",
"author": "nmartin84",
"repo": "nmartin84/logseq-flow",
"theme": true,
"id": "logseq-flow-theme",
"addedAt": 1664372220000
},
{
"title": "Focus Mode",
"description": "Focus mode for Logseq.",
"author": "Seth Fair",
"repo": "sethfair/logseq-focus-mode",
"icon": "icon.png",
"theme": false,
"id": "logseq-focus-mode",
"addedAt": 1637215252000
},
{
"title": "Get YouTube Captions",
"description": "A plugin to download the captions for a video and insert them into the editor. Supports multiple languages.",
"author": "Brian Sunter",
"repo": "briansunter/logseq-get-youtube-captions",
"icon": "./icon.png",
"effect": true,
"id": "logseq-get-youtube-captions",
"addedAt": 1655184964000
},
{
"title": "Git",
"description": "A git plugin for logseq",
"author": "haydenull",
"repo": "haydenull/logseq-plugin-git",
"icon": "icon.png",
"effect": true,
"id": "logseq-git",
"addedAt": 1651710549000
},
{
"title": "logseq-github-plugin ",
"description": "A utility to import and keep track of github issues",
"author": "Aryan Sawhney",
"repo": "sawhney17/logseq-github-plugin",
"icon": "./icon.png",
"sponsors": [
"https://www.buymeacoffee.com/sawhney17"
],
"effect": true,
"id": "logseq-github-plugin",
"addedAt": 1648401220000
},
{
"title": "GitHub theme",
"description": "😻 GitHub themes for Logseq.",
"author": "g1eny0ung",
"repo": "g1eny0ung/logseq-github-theme",
"icon": "icon.png",
"theme": true,
"id": "logseq-github-theme",
"addedAt": 1647094007000
},
{
"title": "Global Custom CSS",
"description": "A plugin for Logseq themer.",
"author": "vipzhicheng",
"repo": "vipzhicheng/logseq-plugin-global-custom-css",
"icon": "icon.png",
"sponsors": [
"https://www.buymeacoffee.com/vipzhicheng"
],
"id": "logseq-global-custom-css",
"addedAt": 1655458827000
},
{
"title": "Go Home Now!",
"description": "A quick utility to go to the current daily note and append and scroll to a block",
"author": "Aryan Sawhney",
"repo": "sawhney17/logseq-go-now",
"icon": "./icon.png",
"effect": true,
"sponsors": [
"https://www.buymeacoffee.com/sawhney17"
],
"id": "logseq-go-home-now",
"addedAt": 1654748834000
},
{
"title": "Google Fonts",
"description": "Use Google Fonts for rendering.",
"author": "vipzhicheng",
"repo": "vipzhicheng/logseq-plugin-google-fonts",
"icon": "icon.png",
"sponsors": [
"https://www.buymeacoffee.com/vipzhicheng"
],
"id": "logseq-google-fonts",
"addedAt": 1656910788000
},
{
"title": "Logseq Grammarly",
"description": "Toggle Grammarly inside Logseq and configure the suggestions.",
"repo": "xflash96/logseq-grammarly",
"author": "xflash96",
"icon": "icon.png",
"effect": true,
"id": "logseq-grammarly",
"addedAt": 1672557598000
},
{
"title": "Logseq Graph Analysis",
"name": "Logseq Graph Analysis",
"description": "Learn more about the relationships between between your notes using network analysis algorithms.",
"author": "Stephen Solka",
"repo": "trashhalo/logseq-graph-analysis",
"icon": "icon.png",
"sponsors": [
"https://ko-fi.com/trashhalo"
],
"id": "logseq-graph-analysis",
"addedAt": 1656323540000
},
{
"title": "Gunmetal Theme",
"description": "Gunmetal Theme was designed for long screen times and reading comfort. It features a dark theme and a light theme.",
"author": "blueteafrog",
"repo": "blueteafrog/logseq-gunmetal-theme",
"icon": "icon.png",
"theme": true,
"id": "logseq-gunmetal-theme",
"addedAt": 1642397285000
},
{
"title": "Habit Tracker",
"description": "Track habits on daily journal pages.",
"author": "c6p",
"repo": "c6p/logseq-habit-tracker",
"id": "logseq-habit-tracker",
"addedAt": 1631638933000
},
{
"title": "Heatmap",
"description": "Activity heatmap based on how many journal blocks created that day",
"author": "pengx17",
"repo": "pengx17/logseq-plugin-heatmap",
"icon": "./icon.png",
"effect": true,
"id": "logseq-heatmap",
"addedAt": 1631021796000
},
{
"title": "Helium",
"description": "Float videos for an improved note-taking experience",
"repo": "vyleung/logseq-helium-plugin",
"author": "vyleung",
"icon": "icon.png",
"effect": true,
"id": "logseq-helium-plugin",
"addedAt": 1650781091000
},
{
"title": "Hypothesis",
"description": "Sync hypothes.is annotations to Logseq.",
"author": "c6p",
"repo": "c6p/logseq-hypothesis",
"icon": "./icon.svg",
"id": "logseq-hypothesis",
"addedAt": 1631638933000
},
{
"title": "Image Uploader",
"description": "Upload images with PicGo.",
"author": "jjaychen",
"repo": "JJAYCHEN1e/logseq-plugin-image-uploader",
"icon": "./icon.png",
"effect": true,
"id": "logseq-image-uploader",
"addedAt": 1641372894000
},
{
"title": "Imgur Upload",
"description": "Upload to Imgur and insert URL",
"author": "hserranome",
"repo": "hserranome/logseq-imgur-upload",
"icon": "./icon.png",
"id": "logseq-imgur-upload",
"addedAt": 1636488826000
},
{
"title": "Immersion theme",
"description": "A clean theme for immersion into Logseq",
"author": "Denys Korolkov",
"repo": "denyskorolkov/logseq-immersion-theme",
"icon": "icon.png",
"theme": true,
"id": "logseq-immersion-theme",
"addedAt": 1652112699000
},
{
"title": "Inbox Telegram",
"description": "A Logseq plugin that reads Telegram chat and pull messages to daily journal.",
"author": "shady2k",
"repo": "shady2k/logseq-inbox-telegram-plugin",
"icon": "./icon.png",
"theme": false,
"id": "logseq-inbox-telegram-plugin",
"addedAt": 1642746924000
},
{
"title": "Logseq Interstitial Journal",
"description": "Interstitial Journaling plugin: create time stamps, add (random) notes and notes to self to your journal",
"repo": "QWxleA/logseq-interstitial-heading-plugin",
"author": "Alex Qwxlea",
"icon": "icon.png",
"id": "logseq-interstitial",
"addedAt": 1648940658000
},
{
"title": "Interval Hints",
"description": "Flexible plugin that annotates deadline/schedule times to show countdown and elapsed times. Includes a renderer to insert countdowns/elapsed hints in any block.",
"author": "KerfuffleV2",
"repo": "kerfufflev2/logseq-plugin-interval-hints",
"effect": true,
"id": "logseq-interval-hints",
"addedAt": 1654284638000
},
{
"title": "Logseq Jira Sync",
"description": "A Logseq-Jira integration.",
"author": "adyscorpius",
"repo": "adyscorpius/logseq-jira",
"icon": "./icon.png",
"theme": false,
"effect": true,
"id": "logseq-jira",
"addedAt": 1668385318000
},
{
"title": "Logseq Journal Auto Copier",
"description": "Copies the last edited journal into today's journal. Deletes completed TODOs and clears out Notes sections.",
"repo": "alecdibble/logseq-journal-auto-copier",
"author": "alecdibble",
"icon": "icon.png",
"sponsors": [
"https://www.alecdibble.com"
],
"id": "logseq-journal-auto-copier",
"addedAt": 1670347484000
},
{
"title": "Journals calendar",
"description": "A simple journals calendar plugin for Logseq.",
"repo": "xyhp915/logseq-journals-calendar",