forked from logseq/marketplace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugins.json
More file actions
971 lines (971 loc) · 31.6 KB
/
plugins.json
File metadata and controls
971 lines (971 loc) · 31.6 KB
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
{
"datetime": 1647830638736,
"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"
},
{
"title": "Agenda",
"description": "An agenda manager plugin for logseq",
"author": "haydenull",
"repo": "haydenull/logseq-plugin-agenda",
"icon": "icon.png",
"effect": true,
"id": "logseq-agenda"
},
{
"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"
},
{
"title": "Logseq Anki Sync",
"description": "An Logseq to Anki Flashcards integration plugin.",
"author": "debanjandhar12",
"repo": "debanjandhar12/logseq-anki-sync",
"icon": "./icon.png",
"sponsors": [
"https://www.buymeacoffee.com/debanjandhar12"
],
"id": "logseq-anki-sync"
},
{
"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"
},
{
"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"
},
{
"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"
},
{
"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"
},
{
"title": "Browser",
"description": "A browser plugin for logseq",
"author": "haydenull",
"repo": "haydenull/logseq-plugin-browser",
"icon": "icon.png",
"id": "logseq-browser"
},
{
"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"
},
{
"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"
},
{
"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"
},
{
"title": "Logseq Case Converter",
"name": "Logseq Case converter",
"description": "A utility to quickly change the casing of a block",
"author": "sawhney17",
"repo": "sawhney17/logseq-case-converter",
"icon": "icon.png",
"sponsors": [
"https://www.buymeacoffee.com/sawhney17"
],
"id": "logseq-case-converter"
},
{
"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"
},
{
"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"
},
{
"title": "Chocolate 🍫",
"description": "A rich, yummy, delicious theme for Logseq.",
"author": "nmartin84",
"repo": "nmartin84/logseq-chocolate",
"icon": "icon.png",
"theme": true,
"id": "logseq-chocolate"
},
{
"title": "Comment block",
"description": "An automatic block comment history.",
"author": "vipzhicheng",
"repo": "vipzhicheng/logseq-plugin-comment-block",
"icon": "./icon.png",
"id": "logseq-comment-block"
},
{
"title": "Copy ref to journal",
"description": "Copy any page blocks ref to today's journal page, very useful for task management case.",
"author": "vipzhicheng",
"repo": "vipzhicheng/logseq-plugin-copy-ref-to-journal",
"icon": "./icon.png",
"id": "logseq-copy-ref-to-journal"
},
{
"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"
},
{
"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"
},
{
"title": "D42ker Logseq",
"description": "A darker Logseq theme.",
"author": "LeonWong0609",
"repo": "LeonWong0609/D42ker-Logseq",
"icon": "icon.png",
"theme": true,
"id": "logseq-d42ker-theme"
},
{
"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"
},
{
"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": "sawhney17",
"repo": "sawhney17/logseq-datetag-plugin",
"icon": "icon.png",
"sponsors": [
"https://www.buymeacoffee.com/sawhney17"
],
"id": "logseq-datetag-plugin"
},
{
"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"
},
{
"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.svg",
"id": "logseq-diagrams-as-code"
},
{
"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"
},
{
"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"
},
{
"title": "Dracula theme",
"description": "🧛 Dark theme for Logseq.",
"author": "slybouhafs",
"repo": "dracula/logseq",
"icon": "icon.svg",
"theme": true,
"id": "logseq-dracula-theme"
},
{
"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"
},
{
"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"
},
{
"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"
},
{
"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"
},
{
"title": "GitHub theme",
"description": "😻 GitHub themes for Logseq.",
"author": "g1eny0ung",
"repo": "g1eny0ung/logseq-github-theme",
"icon": "icon.png",
"theme": true,
"id": "logseq-github-theme"
},
{
"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"
},
{
"title": "Habit Tracker",
"description": "Track habits on daily journal pages.",
"author": "c6p",
"repo": "c6p/logseq-habit-tracker",
"id": "logseq-habit-tracker"
},
{
"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"
},
{
"title": "Hypothesis",
"description": "Sync hypothes.is annotations to Logseq.",
"author": "c6p",
"repo": "c6p/logseq-hypothesis",
"icon": "./icon.svg",
"id": "logseq-hypothesis"
},
{
"title": "Image Uploader",
"description": "Upload images with PicGo.",
"author": "jjaychen",
"repo": "JJAYCHEN1e/logseq-plugin-image-uploader",
"icon": "./icon.png",
"id": "logseq-image-uploader"
},
{
"title": "Imgur Upload",
"description": "Upload to Imgur and insert URL",
"author": "hserranome",
"repo": "hserranome/logseq-imgur-upload",
"icon": "./icon.png",
"id": "logseq-imgur-upload"
},
{
"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"
},
{
"title": "Interstitial Heading Plugin",
"description": "Insert a bold timestamp, or heading in the current line. Makes Interstitial journaling easier",
"author": "qwxlea",
"repo": "QWxleA/logseq-interstitial-heading-plugin",
"icon": "./icon.png",
"id": "logseq-interstitial-heading-plugin"
},
{
"title": "Journals calendar",
"description": "A simple journals calendar plugin for Logseq.",
"repo": "xyhp915/logseq-journals-calendar",
"author": "xyhp915",
"icon": "icon.png",
"sponsors": [
"https://opencollective.com/logseq"
],
"id": "logseq-journals-calendar"
},
{
"title": "logseq-kanban-plugin",
"name": "logseq-kanban-plugin",
"description": "Simple plugin to help visualise data on a Kanban Board!",
"author": "hkgnp",
"repo": "hkgnp/logseq-kanban-plugin",
"icon": "./icon.svg",
"id": "logseq-kanban-plugin"
},
{
"title": "logseq-keywordfrequency-plugin",
"name": "logseq-keywordfrequency-plugin",
"description": "Keeps track of your most used keywords, just for fun!",
"author": "hkgnp",
"repo": "hkgnp/logseq-keywordfrequency-plugin",
"icon": "./icon.png",
"id": "logseq-keywordfrequency-plugin"
},
{
"title": "Laurel theme",
"description": "A custom theme forked from logseq-clean-themes",
"author": "pengx17",
"repo": "pengx17/logseq-laurel-theme",
"icon": "laurel.png",
"theme": true,
"id": "logseq-laurel-theme"
},
{
"title": "Link Preview",
"description": "Show basic link information for external links in Logseq.",
"author": "pengx17",
"repo": "pengx17/logseq-plugin-link-preview",
"effect": true,
"id": "logseq-link-preview"
},
{
"title": "logseq-localassets-plugin",
"name": "logseq-localassets-plugin",
"description": "Simple plugin to easily insert local assets (e.g. images, PDFs, audio and video files) without the need to specify the path.",
"author": "hkgnp",
"repo": "hkgnp/logseq-localassets-plugin",
"icon": "./icon.svg",
"id": "logseq-localassets-plugin"
},
{
"title": "Lock block",
"description": "Lock block with your password, and only can unlock with your password.",
"author": "vipzhicheng",
"repo": "vipzhicheng/logseq-plugin-lock",
"icon": "./icon.png",
"id": "logseq-lock"
},
{
"title": "Lock screen",
"description": "Add lock screen to Logseq for safer and fun.",
"author": "vipzhicheng",
"repo": "vipzhicheng/logseq-plugin-lock-screen",
"icon": "icon.png",
"id": "logseq-lock-screen"
},
{
"title": "Luckysheet",
"description": "Embed Luckysheet (spreadsheet) into Logseq.",
"author": "sethyuan",
"repo": "sethyuan/logseq-plugin-luckysheet",
"icon": "./icon.png",
"effect": true,
"id": "logseq-luckysheet"
},
{
"title": "Markmap",
"description": "Mind map support based on markmap library.",
"author": "vipzhicheng",
"repo": "vipzhicheng/logseq-plugin-mark-map",
"icon": "./icon.png",
"id": "logseq-mark-map"
},
{
"title": "Markdown Table Editor",
"description": "Markdown Table Editor",
"author": "haydenull",
"repo": "haydenull/logseq-plugin-markdown-table",
"icon": "icon.png",
"id": "logseq-markdown-table"
},
{
"title": "Media Timestamp",
"description": "This plugin can generate timestamps for video, audio and Bilibili video, it takes you to the corresponding video/audio position when clicked.",
"author": "sethyuan",
"repo": "sethyuan/logseq-plugin-media-ts",
"icon": "./icon.png",
"effect": true,
"id": "logseq-media-ts"
},
{
"title": "logseq-mergepages-plugin",
"name": "logseq-mergepages-plugin",
"description": "Simple plugin to help merge pages.",
"author": "hkgnp",
"repo": "hkgnp/logseq-mergepages-plugin",
"icon": "./icon.svg",
"id": "logseq-mergepages-plugin"
},
{
"title": "logseq-mermaid-plugin",
"name": "logseq-mermaid-plugin",
"description": "This simple plugin allows you to quickly insert mermaid diagrams in your notes.",
"author": "hkgnp",
"repo": "hkgnp/logseq-mermaid-plugin",
"icon": "./icon.svg",
"id": "logseq-mermaid-plugin"
},
{
"title": "Milestone",
"description": "Show milestone in calendar",
"author": "haydenull",
"repo": "haydenull/logseq-plugin-milestone",
"icon": "icon.png",
"id": "logseq-milestone"
},
{
"title": "Mocha Theme",
"description": "Mocha theme features a light and dark mode with pronounced main content section",
"author": "blueteafrog",
"repo": "blueteafrog/logseq-mocha-theme",
"icon": "icon.png",
"theme": true,
"id": "logseq-mocha-theme"
},
{
"title": "Music Notation",
"description": "Write music in Logseq using ABC Notation",
"author": "benjaffe",
"repo": "benjaffe/logseq-music-notation",
"icon": "./icon.png",
"id": "logseq-music-notation"
},
{
"title": "My Highlights",
"description": "Import highlights into logseq",
"author": "Ben Force",
"repo": "theBenForce/logseq-plugin-my-highlights",
"icon": "icon.svg",
"sponsors": [
"https://www.buymeacoffee.com/theBenForce"
],
"id": "logseq-my-highlights"
},
{
"title": "Nord Theme",
"description": "A theme for Nord.",
"author": "nmartin84",
"repo": "nmartin84/logseq-nord",
"icon": "icon.png",
"theme": true,
"id": "logseq-nord"
},
{
"title": "Ordered Lists",
"description": "Ordered lists, flat or nested, multiple formats ordered lists.",
"author": "sethyuan",
"repo": "sethyuan/logseq-plugin-ol",
"icon": "./icon.png",
"id": "logseq-ol"
},
{
"title": "Open in External App",
"description": "Use external app to open logseq file",
"author": "haydenull",
"repo": "haydenull/logseq-plugin-open-in-external-app",
"icon": "icon.png",
"id": "logseq-open-in-external-app"
},
{
"title": "logseq-osmmaps-plugin",
"name": "logseq-osmmaps-plugin",
"description": "This plugin lets you create a map and plot a marker on a specific spot.",
"author": "hkgnp",
"repo": "hkgnp/logseq-osmmaps-plugin",
"icon": "./icon.svg",
"effect": true,
"id": "logseq-osmmaps-plugin"
},
{
"title": "Oxford Blue Theme",
"description": "Oxford blue theme features both a low contrast dark mode and high contrast light mode",
"author": "blueteafrog",
"repo": "blueteafrog/logseq-oxfordblue-theme",
"icon": "icon.png",
"theme": true,
"id": "logseq-oxford-blue-theme"
},
{
"title": "Panic theme",
"description": "A theme inspired by Panic mode tempalte from Bear notes app ",
"author": "SoKirill",
"repo": "sokirill/logseq-panic-theme",
"icon": "icon.png",
"theme": true,
"id": "logseq-panic-theme"
},
{
"title": "Paper theme",
"description": "A minimal Logseq theme",
"author": "wirtzdan",
"repo": "wirtzdan/logseq-paper-theme",
"icon": "icon.png",
"theme": true,
"id": "logseq-paper-theme"
},
{
"title": "logseq-parsecsv-plugin",
"name": "logseq-parsecsv-plugin",
"description": "Easily upload a CSV file and convert it into a table in Logseq!",
"author": "hkgnp",
"repo": "hkgnp/logseq-parsecsv-plugin",
"icon": "./icon.svg",
"id": "logseq-parsecsv-plugin"
},
{
"title": "phonetonote logseq client",
"description": "fetch messages from your phonetonote feed into your logseq graph",
"author": "phonetonote",
"repo": "phonetonote/phonetonote-logseq",
"icon": "icon.png",
"id": "logseq-phonetonote"
},
{
"title": "Pink as Fox Theme",
"description": "Black and pink theme for Logseq.",
"author": "avoonix",
"repo": "avoonix/logseq-pink-as-fox-theme",
"icon": "icon.svg",
"theme": true,
"id": "logseq-pink-as-fox-theme"
},
{
"title": "Heading level shortcuts",
"description": "Bind shortcuts for heading level",
"author": "vipzhicheng",
"icon": "icon.png",
"repo": "vipzhicheng/logseq-plugin-heading-level-shortcuts",
"id": "logseq-plugin-heading-level-shortcuts"
},
{
"title": "logseq-property-visualizer",
"description": "Visualizing trends in page properties, requires Chart Render and Table render plugin",
"author": "Aryan Sawhney",
"repo": "sawhney17/logseq-property-visualizer",
"icon": "./logo.png",
"sponsors": [
"https://www.buymeacoffee.com/sawhney17"
],
"id": "logseq-property-visualizer"
},
{
"title": "Quattro Theme",
"description": "Where your attention goes, your time goes. An iA Writer inspired theme for Logseq.",
"author": "Alexander Rink",
"repo": "rcvd/logseq-quattro-theme",
"icon": "icon.png",
"theme": true,
"id": "logseq-quattro-theme"
},
{
"title": "Quick todo",
"description": "This simple plugin helps you to insert a TODO item on your today's journal page, without navigating to it.",
"author": "hkgnp",
"repo": "hkgnp/logseq-quicktodo-plugin",
"icon": "./icon.svg",
"id": "logseq-quicktodo-plugin"
},
{
"title": "Random Note",
"description": "Random walk through your Logseq notes.",
"author": "tankcool",
"repo": "tankcool/logseq-random-note",
"icon": "icon.png",
"id": "logseq-random-note"
},
{
"title": "logseq-recipeimporter-plugin",
"name": "logseq-recipeimporter-plugin",
"description": "A simple plugin to import recipes directly into Logseq just by using the URL of the recipe!",
"author": "hkgnp",
"repo": "hkgnp/logseq-recipeimporter-plugin",
"icon": "./icon.svg",
"id": "logseq-recipeimporter-plugin"
},
{
"title": "logseq-recurrence-plugin",
"name": "logseq-recurrence-plugin",
"description": "This plugin allows you to quickly add recurring blocks based on your desired recurrence. It also allows you to delete inserted recurring blocks as well!",
"author": "hkgnp",
"repo": "hkgnp/logseq-recurrence-plugin",
"icon": "./icon.svg",
"id": "logseq-recurrence-plugin"
},
{
"title": "Reference Styles",
"description": "Add emoji or custom colors to block references that match particular patterns",
"author": "benjaffe",
"repo": "benjaffe/logseq-reference-styles",
"icon": "./logo.png",
"id": "logseq-reference-styles"
},
{
"title": "Logseq RTL Mode",
"description": "Support RTL mode for languages like Hebrew, Arabic, Farsi, Urdu, etc.",
"author": "Aryan Sawhney",
"repo": "sawhney17/logseq-rtl-mode-plugin",
"icon": "./icon.png",
"effect": true,
"sponsors": [
"https://www.buymeacoffee.com/sawhney17"
],
"id": "logseq-rtl-mode-plugin"
},
{
"title": "Sepia theme",
"description": "A Sepia Logseq Theme",
"author": "mschmidtkorth/crendl",
"repo": "crendl/logseq-sepia-theme",
"theme": true,
"id": "logseq-sepia-theme"
},
{
"title": "logseq-sliders-plugin",
"name": "logseq-sliders-plugin",
"description": "Simple plugin to insert a slider into your notes to use as a visualisation tool!",
"author": "hkgnp",
"repo": "hkgnp/logseq-sliders-plugin",
"icon": "./icon.svg",
"effect": true,
"id": "logseq-sliders-plugin"
},
{
"title": "logseq-smartblocks",
"description": "A port of the roam SmartBlocks extension with a dash of Notion",
"author": "Aryan Sawhney",
"repo": "sawhney17/logseq-smartblocks",
"icon": "./logo.png",
"sponsors": [
"https://www.buymeacoffee.com/sawhney17"
],
"id": "logseq-smartblocks"
},
{
"title": "Solarized theme",
"description": "A solarized light theme.",
"author": "nmartin84",
"repo": "nmartin84/logseq-solarized",
"theme": true,
"id": "logseq-solarized-theme"
},
{
"title": "Split block",
"description": "Splitting multi-line text into blocks",
"author": "hyrijk",
"repo": "hyrijk/logseq-plugin-split-block",
"id": "logseq-split-block"
},
{
"title": "Style Carousel",
"description": "Toggle visibility of completed and canceled to-dos. Buttons may be added/reconfigured for any imaginable style effects.",
"author": "Mario T. Lanza",
"repo": "mlanza/logseq-style-carousel",
"icon": "./carousel.png",
"id": "logseq-style-carousel"
},
{
"title": "logseq-swapblocks-plugin",
"name": "logseq-swapblocks-plugin",
"description": "Simple plugin to swap a reference block with its original block and preserve it's other references.",
"author": "hkgnp",
"repo": "hkgnp/logseq-swapblocks-plugin",
"icon": "./icon.svg",
"id": "logseq-swapblocks-plugin"
},
{
"title": "logseq-tablerender-plugin",
"name": "logseq-tablerender-plugin",
"description": "Render tables with basic math functions using data from your blocks",
"author": "hkgnp",
"repo": "hkgnp/logseq-tablerender-plugin",
"icon": "./icon.svg",
"id": "logseq-tablerender-plugin"
},
{
"title": "Tabs",
"description": "Open pages or blocks in tabs like working in the browser",
"author": "pengx17",
"repo": "pengx17/logseq-plugin-tabs",
"icon": "./icon.png",
"effect": true,
"id": "logseq-tabs"
},
{
"title": "Tags",
"description": "A plugin that lets you find and search all of your #tags.",
"author": "Gidong Kwon",
"repo": "gidongkwon/logseq-plugin-tags",
"icon": "./tags-plugin-icon.png",
"id": "logseq-tags"
},
{
"title": "Task management shortcuts",
"description": "Add shortcuts for Logseq task management.",
"author": "vipzhicheng",
"repo": "vipzhicheng/logseq-plugin-task-management-shortcuts",
"icon": "icon.png",
"id": "logseq-task-management-shortcuts"
},
{
"title": "Textbook theme",
"description": "Textbook theme for Logseq",
"author": "joeykhuang",
"repo": "joeykhuang/logseq-textbook-theme",
"icon": "icon.png",
"theme": true,
"id": "logseq-textbook-theme"
},
{
"title": "Things Theme",
"description": "The things you used to own, now they own you.",
"author": "Alexander Rink",
"repo": "rcvd/logseq-things-theme",
"icon": "icon.png",
"theme": true,
"sponsors": [
"https://www.buymeacoffee.com/rcvdio",
"https://flattr.com/@rcvd",
"https://www.paypal.com/paypalme/rcvd"
],
"id": "logseq-things-theme"
},
{
"title": "logseq-toc-plugin",
"name": "logseq-toc-plugin",
"description": "Interactive (style-able), real-time rendering of Table of Contents.",
"author": "hkgnp",
"repo": "hkgnp/logseq-toc-plugin",
"icon": "./icon.svg",
"id": "logseq-toc-plugin"
},
{
"title": "TOC Generator",
"description": "Generate a TOC of any page anywhere to quickly access the page's content.",
"author": "sethyuan",
"repo": "sethyuan/logseq-plugin-tocgen",
"icon": "./icon.png",
"effect": true,
"id": "logseq-tocgen"
},
{
"title": "TODO Master",
"description": "Render a progress bar to gether the overall progress of the current block or page.",
"author": "pengx17",
"icon": "./logo.png",
"repo": "pengx17/logseq-plugin-todo-master",
"id": "logseq-todo-master"
},
{
"title": "logseq-todoist-plugin",
"description": "Easily pull active tasks from Todoist and quickly push tasks to Todoist!",
"author": "hkgnp",
"repo": "hkgnp/logseq-todoist-plugin",
"icon": "./icon.png",
"id": "logseq-todoist-plugin"
},
{
"title": "Tokyo theme",
"description": "Port of the Obsidian MD theme Tokyo Night.",
"author": "nmartin84",
"repo": "nmartin84/logseq-tokyo-theme",
"theme": true,
"id": "logseq-tokyo-theme"
},
{
"title": "Logseq Toolbox",
"description": "Some useful tiny tools for logseq.",
"author": "tankcool",
"repo": "tankcool/logseq-toolbox",
"icon": "icon.png",
"id": "logseq-toolbox"
},
{
"title": "logseq-trackhabits2-plugin",
"name": "logseq-trackhabits2-plugin",
"description": "Easily track your habits by just tagging your TODO list with #habit-tracker !",
"author": "hkgnp",
"repo": "hkgnp/logseq-trackhabits2-plugin",
"icon": "./icon.svg",
"id": "logseq-trackhabits2-plugin"
},
{
"title": "logseq-tweet-plugin",
"name": "logseq-tweet-plugin",
"description": "Easily tweet from within Logseq in a quick and easy manner!",
"author": "hkgnp",
"repo": "hkgnp/logseq-tweet-plugin",
"icon": "./icon.svg",
"effect": true,
"id": "logseq-tweet-plugin"
},
{
"title": "Readwise plugin (unofficial)",
"description": "Unofficial Readwise plugin to pull in all your highlights from Readwise and track new ones!",
"author": "hkgnp",
"repo": "hkgnp/logseq-readwise-plugin",
"icon": "./icon.png",
"effect": true,
"id": "logseq-unofficial-readwise-plugin"
},
{
"title": "Unsplash Images",
"description": "A plugin to add Unsplash images via slash commands in Logseq",
"author": "clearlysid",
"repo": "clearlysid/logseq-unsplash",
"icon": "icon.png",
"id": "logseq-unsplash"
},
{
"title": "VIM editor",
"description": "VIM-like editor to edit blocks.",
"author": "vipzhicheng",
"repo": "vipzhicheng/logseq-plugin-vim-editor",
"icon": "icon.png",
"id": "logseq-vim-editor"
},
{
"title": "VIM shortcuts",
"description": "VIM-like operation feeling.",
"author": "vipzhicheng",
"repo": "vipzhicheng/logseq-plugin-vim-shortcuts",
"icon": "icon.png",
"id": "logseq-vim-shortcuts"
},
{
"title": "Wide Eyed",
"description": "Toggles the visibility of completed/canceled to-dos.",
"author": "Mario T. Lanza",
"repo": "mlanza/logseq-wide-eyed",
"icon": "./wide-eyed.svg",
"id": "logseq-wide-eyed"
},
{
"title": "logseq-wordcount-plugin",
"name": "logseq-wordcount-plugin",
"description": "Simple word counter that calculates the number of words across all nested blocks!",
"author": "hkgnp",
"repo": "hkgnp/logseq-wordcount-plugin",
"icon": "./icon.png",
"id": "logseq-wordcount-plugin"
},
{
"title": "Woz theme",
"description": "A theme base logseq-dev-theme.",
"author": "haydenull",
"repo": "haydenull/logseq-woz-theme",
"icon": "icon.png",
"theme": true,
"id": "logseq-woz-theme"
},
{
"title": "Text Wrapper",
"description": "Create your own wrappings with optional key bindings for selected text, a set of useful defaults is also provided.",
"author": "sethyuan",
"repo": "sethyuan/logseq-plugin-wrap",
"icon": "./icon.png",
"effect": true,
"id": "logseq-wrap"
},
{
"title": "LogTools - productivity pack",
"description": "Kanban-Column view, Image Gallery, Priority Matrix, Pro-Cons, Borders, numlists",
"author": "cannibalOx",
"repo": "cannibalox/logtools",
"icon": "icon.png",
"theme": false,
"sponsors": [
"https://ko-fi.com/cannibaloxxx"
],
"id": "logtools"
}
]
}