-
Notifications
You must be signed in to change notification settings - Fork 281
/
plugins.json
4616 lines (4616 loc) · 149 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": 1730980645553,
"packages": [
{
"title": "Block pin",
"description": "Add \"Paste as pin\" shortcut for pdf and editor blocks.",
"author": "Joodo <wyattliang@gmail.com>",
"repo": "joodo/logseq-plugin-pin",
"icon": "icon.png",
"effect": true,
"id": "block-pin",
"addedAt": 1724776882000
},
{
"title": "Cobra Kai Fira Theme",
"description": "If Cobra Kai had a Logseq theme this would be it! (Made for fans of dark-mode).",
"author": "Santi Younger (Fira variant by Martín Pozo)",
"repo": "Martin1887/CobraKaiFira",
"icon": "icon.png",
"theme": true,
"id": "cobra-kai-fira-theme",
"addedAt": 1634165328000
},
{
"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": "darwis-mathlive-plugin",
"name": "darwis-mathlive-plugin",
"description": "Use Mathlive to input mathematical expressions in Logseq.",
"author": "hkgnp",
"repo": "hkgnp/darwis-mathlive-plugin",
"icon": "./icon.svg",
"effect": true,
"id": "darwis-mathlive-plugin",
"addedAt": 1681456468000
},
{
"title": "flomo_memos_sync",
"description": "同步 flomo 笔记至 logseq",
"repo": "duiliuliu/logseq-flomo-plugin",
"author": "duiliuliu",
"icon": "icon.png",
"id": "flomo_memos_sync",
"addedAt": 1652944875000
},
{
"title": "OddBox - Gruvbox Theme for LogSeq",
"description": "A theme for LogSeq based on the popular Gruvbox color theme.",
"author": "Kai Klostermann",
"repo": "OddDev/oddbox",
"icon": "icon.png",
"theme": true,
"id": "gruvbox-theme",
"addedAt": 1727897099000
},
{
"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": "Animal Crossing Keijiban",
"description": "Display a random quote from the bullitein board in Animal Crossing Wild World",
"author": "breadfruit_burial",
"repo": "matteron/logseq-ac-keijiban",
"icon": "icon.png",
"theme": false,
"id": "logseq-ac-keijiban",
"addedAt": 1699496546000
},
{
"title": "Add PARA Properties Into Page",
"description": "Easily add PARA into your workflow. Comes with a PARA page to list all your Projects, Areas, Resources.",
"author": "George Guimarães",
"repo": "georgeguimaraes/logseq-plugin-add-PARA-properties",
"icon": "icon.png",
"theme": false,
"id": "logseq-add-para-properties",
"addedAt": 1668437633000
},
{
"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": "AI Assistant",
"description": "A Logseq plugin empowered by AI for effortless note-taking.",
"author": "unickcheng",
"repo": "UNICKCHENG/logseq-ai-assistant",
"id": "logseq-ai-assistant",
"addedAt": 1685525024000
},
{
"title": "Logseq AI Auto Tags",
"description": "Using AI to automatically tag blocks and pages",
"author": "b-yp",
"repo": "b-yp/logseq-ai-auto-tags",
"icon": "./logo.svg",
"effect": true,
"id": "logseq-ai-auto-tags",
"addedAt": 1698845571000
},
{
"title": "AI Query generator",
"name": "logseq-plugin-ai-query",
"description": "Logseq plugin to generate advanced queries by typing in natural language",
"author": "Daniel Zholkovsky",
"repo": "dailydaniel/logseq-plugin-ai-query",
"icon": "./logo.png",
"id": "logseq-ai-query-generator",
"addedAt": 1725020784000
},
{
"title": "AI Search",
"description": "Perform a global search within the logseq document and output relevant content.",
"author": "Chii_Magnus",
"repo": "chiimagnus/logseq-AIsearch",
"icon": "icon.png",
"effect": true,
"sponsors": [
"https://github.com/chiimagnus/logseq-AIsearch/blob/master/public/buymeacoffee.jpg"
],
"id": "logseq-aisearch",
"addedAt": 1729681060000
},
{
"title": "All Day Theme",
"description": "A clean theme styled for high readability and minimal eye strain.",
"repo": "ttytm/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://github.com/sponsors/debanjandhar12",
"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",
"sponsors": [
"https://www.buymeacoffee.com/sethyuan"
],
"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": "Archive Webpage",
"description": "Archive URLs directly in Logseq and save locally.",
"author": "Pat Migliaccio",
"repo": "patmigliaccio/logseq-archive-webpage",
"icon": "icon.png",
"effect": true,
"sponsors": [
"https://www.buymeacoffee.com/patmigliaccio"
],
"id": "logseq-archive-webpage",
"addedAt": 1699606391000
},
{
"title": "Logseq Ask PDF",
"description": "A plugin that allows you to ask questions about PDF highlights using Large Language Models (LLM)",
"author": "hi-jin",
"repo": "hi-jin/logseq-ask-pdf",
"icon": "icon.png",
"theme": false,
"sponsors": [],
"effect": true,
"id": "logseq-ask-pdf",
"addedAt": 1722831980000
},
{
"title": "Assets plus",
"description": "A Logseq plugin to enhance the assets features.",
"author": "xyhp915",
"repo": "xyhp915/logseq-assets-plus",
"icon": "icon.png",
"id": "logseq-assets-plus",
"addedAt": 1697553832000
},
{
"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": "Logseq audio memo",
"description": "Plugin for recording audio and inserting documents.",
"author": "b-yp",
"repo": "b-yp/logseq-audio-memo",
"icon": "./logo.svg",
"effect": true,
"id": "logseq-audio-memo",
"addedAt": 1687202635000
},
{
"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 Content",
"description": "Enhanced content blocks (tasks, quotes, flashcards, headers, queries, diagrams, etc...)",
"author": "yoyurec",
"repo": "yoyurec/logseq-awesome-content",
"icon": "icon.png",
"sponsors": [
"https://www.buymeacoffee.com/yoyurec"
],
"effect": true,
"id": "logseq-awesome-content",
"addedAt": 1678123549000
},
{
"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 Props",
"description": "Restyled and iconized properties for Logseq ala Notion/Tana",
"author": "yoyurec",
"repo": "yoyurec/logseq-awesome-props",
"icon": "icon.png",
"sponsors": [
"https://www.buymeacoffee.com/yoyurec"
],
"effect": true,
"id": "logseq-awesome-props",
"addedAt": 1676423084000
},
{
"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.",
"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",
"sponsors": [
"https://www.buymeacoffee.com/sethyuan"
],
"effect": true,
"id": "logseq-batch-op",
"addedAt": 1656070651000
},
{
"title": "Bear Cub Theme for Logseq",
"description": "The Bear Cub theme is minimalistic and functional. This theme doesn't distract you with an explosion of color and graphical elements. Instead, it helps you stay focused. It creates a clear distinction between different structural and functional elements, which helps you see a bigger picture at a glance at any time.",
"author": "Sh00Fly",
"repo": "Sh00Fly/logseq-bear-cub-theme",
"icon": "icon.png",
"sponsors": [
"https://www.buymeacoffee.com/Sh00Fly"
],
"theme": true,
"id": "logseq-bear-cub-theme",
"addedAt": 1687225943000
},
{
"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": "Logseq Bidi",
"description": "A Logseq plugin for adding bidirectional text support, making it possible to manage knowledge in both LTR and RTL languages.",
"author": "Mostafa Ahangarha",
"repo": "dobidi/logseq-bidi",
"icon": "icon.png",
"effect": true,
"id": "logseq-bidi",
"addedAt": 1692823029000
},
{
"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": "Book Fetch",
"description": "Fetches book data based on an ISBN using the Google Books API.",
"author": "LuloDev",
"repo": "LuloDev/logseq-book-fetch",
"icon": "./icon.png",
"effect": true,
"id": "logseq-book-fetch",
"addedAt": 1709860627000
},
{
"title": "Logseq Block Reference Context",
"description": "Make block references perdurable adding context",
"author": "tejonaco",
"icon": "./icon.png",
"repo": "tejonaco/logseq-brc",
"id": "logseq-brc",
"addedAt": 1714578420000
},
{
"title": "Browser",
"description": "A browser plugin for logseq",
"author": "haydenull",
"repo": "haydenull/logseq-plugin-browser",
"icon": "icon.png",
"id": "logseq-browser",
"addedAt": 1642408210000
},
{
"title": "Bullet Journal theme",
"description": "Sepia, Coffee, White, Black: 4 themes 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-calibre-annotation",
"description": "View ebooks from Calibre and sync annotations",
"author": "duydl",
"repo": "duydl/logseq-calibre-annotation",
"icon": "./icon.jpg",
"sponsors": [
"https://www.buymeacoffee.com/duydole00"
],
"effect": true,
"id": "logseq-calibre-annotation",
"addedAt": 1696159123000
},
{
"title": "logseq-calibre-metadata",
"description": "Create pages for Calibre books",
"author": "duydl",
"repo": "duydl/logseq-calibre-metadata",
"icon": "./icon.jpg",
"sponsors": [
"https://www.buymeacoffee.com/duydole00"
],
"effect": true,
"id": "logseq-calibre-metadata",
"addedAt": 1696159123000
},
{
"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 CardBox",
"description": "Plugin to add thumbnail cards to Logseq that are displayed in order of update.",
"author": "Hidekazu Kubota",
"repo": "sosuisen/logseq-cardbox",
"icon": "./icon.png",
"effect": true,
"sponsors": [
"https://www.buymeacoffee.com/hidekaz"
],
"id": "logseq-cardbox",
"addedAt": 1700110951000
},
{
"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",
"sponsors": [
"https://www.buymeacoffee.com/sethyuan"
],
"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 ChatGPT Plugin",
"description": "An tightly integrated ChatGPT plugin for Logseq.",
"author": "debanjandhar12",
"repo": "debanjandhar12/logseq-chatgpt-plugin",
"icon": "./icon.png",
"effect": true,
"sponsors": [
"https://www.buymeacoffee.com/debanjandhar12"
],
"id": "logseq-chatgpt-plugin",
"addedAt": 1679558997000
},
{
"title": "Logseq Chess",
"description": "Render chessboards in your Logseq documents",
"author": "r8",
"repo": "r8/logseq-chess",
"icon": "icon.png",
"sponsors": [
"https://www.buymeacoffee.com/reight"
],
"effect": true,
"id": "logseq-chess",
"addedAt": 1689021670000
},
{
"title": "Chinese Idiom Dictionary",
"description": "A plugin for querying and inserting Chinese idiom information in logseq.",
"author": "b-yp",
"repo": "b-yp/logseq-chinese-idiom-dictionary",
"icon": "./logo.svg",
"effect": true,
"id": "logseq-chinese-idiom-dictionary",
"addedAt": 1688484886000
},
{
"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": "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 (Journals UI)",
"description": "For quick reference, it is possible to 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"
],
"effect": true,
"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": "Copy URL",
"description": "A simple plugin that enhances your Logseq experience by adding a convenient \"Copy URL\" button next to external links, allowing you to easily copy the URL to your clipboard",
"repo": "RubenSmn/logseq-copy-url",
"author": "RubenSmn",
"icon": "icon.png",
"effect": true,
"id": "logseq-copy-url",
"addedAt": 1701176518000
},
{
"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": "Logseq Crypto",
"description": "Simple encryption for logseq pages",
"author": "tejonaco",
"icon": "./icon.png",
"repo": "tejonaco/logseq-crypto",
"effect": true,
"id": "logseq-crypto",
"addedAt": 1715372773000
},
{
"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": "D2",
"description": "Logseq D2 plugin",
"author": "b-yp",
"repo": "b-yp/logseq-d2",
"icon": "./logo.svg",
"effect": true,
"id": "logseq-d2",
"addedAt": 1677383409000
},
{
"title": "D42ker Logseq",
"description": "A darker Logseq theme.",
"author": "LeonWong0609",
"repo": "l3ony2k/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",
"sponsors": [
"https://www.buymeacoffee.com/sethyuan"
],
"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": "Discourse Graphs",
"description": "A plugin enabling Discourse Graph workflows in Logseq",
"author": "Aryan Sawhney",
"repo": "sawhney17/logseq-discourse-graphs",
"icon": "./icon.png",
"effect": true,
"sponsors": [
"https://www.buymeacoffee.com/sawhney17"
],
"id": "logseq-discourse-graphs",
"addedAt": 1703143941000
},
{
"title": "Logseq Display Math",
"description": "Tweak LaTeX rendering and styling.",
"author": "Allan Chain",
"repo": "AllanChain/logseq-display-math",
"icon": "icon.svg",
"effect": true,
"id": "logseq-display-math",
"addedAt": 1686398234000
},
{
"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",
"sponsors": [
"https://www.buymeacoffee.com/sethyuan"
],
"effect": true,
"id": "logseq-doc",
"addedAt": 1640320979000
},
{
"title": "DONE time",
"description": "Adds a timestamp property to a task when it's marked as DONE",
"author": "Menno Finlay-Smits",
"repo": "mjs/logseq-done-time",
"icon": "icon.png",
"id": "logseq-done-time",
"addedAt": 1710353393000
},
{
"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": "Drawio Plugin",
"description": "This plugin allows you to use drawio diagrams in logseq.",
"author": "Jimmie Lee",
"repo": "lee88688/logseq-drawio-plugin",
"icon": "logo.png",
"effect": true,
"id": "logseq-drawio-plugin",
"addedAt": 1684684094000
},
{
"title": "Draw It",
"description": "Simple Stable Diffusion WebUI frontend for Logseq.",
"author": "sethyuan",
"repo": "sethyuan/logseq-plugin-drawit",