forked from obsidianmd/obsidian-releases
-
Notifications
You must be signed in to change notification settings - Fork 0
/
community-plugins.json
9102 lines (9102 loc) · 303 KB
/
community-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
[
{
"id": "nldates-obsidian",
"name": "Natural Language Dates",
"author": "Argentina Ortega Sainz",
"description": "Create date-links based on natural language.",
"repo": "argenos/nldates-obsidian"
},
{
"id": "hotkeysplus-obsidian",
"name": "Hotkeys++",
"author": "Argentina Ortega Sainz",
"description": "Additional hotkeys to do common things in Obsidian.",
"repo": "argenos/hotkeysplus-obsidian"
},
{
"id": "obsidian-git",
"name": "Obsidian Git",
"author": "Vinzent, (Denis Olehov)",
"description": "Backup your vault with Git",
"repo": "denolehov/obsidian-git"
},
{
"id": "url-into-selection",
"name": "Paste URL into selection",
"author": "Denis Olehov",
"description": "Paste URL \"into\" selected text.",
"repo": "denolehov/obsidian-url-into-selection"
},
{
"id": "sliding-panes-obsidian",
"name": "Sliding Panes (Andy's Mode)",
"author": "death_au",
"description": "Sliding Panes (Andy Matuschak Mode) as a plugin",
"repo": "deathau/sliding-panes-obsidian"
},
{
"id": "cm-show-whitespace-obsidian",
"name": "Show Whitespace",
"author": "death_au",
"description": "Show whitespace in the editor.",
"repo": "deathau/cm-show-whitespace-obsidian"
},
{
"id": "table-editor-obsidian",
"name": "Advanced Tables",
"author": "Tony Grosinger",
"description": "Improved table navigation, formatting, and manipulation.",
"repo": "tgrosinger/advanced-tables-obsidian"
},
{
"id": "leader-hotkeys-obsidian",
"name": "Leader Hotkeys",
"author": "Tony Grosinger",
"description": "Add leader hotkey support to any command (like tmux or vim).",
"repo": "tgrosinger/leader-hotkeys-obsidian"
},
{
"id": "recent-files-obsidian",
"name": "Recent Files",
"author": "Tony Grosinger",
"description": "Display a list of recently opened files.",
"repo": "tgrosinger/recent-files-obsidian"
},
{
"id": "ledger-obsidian",
"name": "Ledger",
"author": "Tony Grosinger",
"description": "Plain text accounting.",
"repo": "tgrosinger/ledger-obsidian"
},
{
"id": "note-refactor-obsidian",
"name": "Note Refactor",
"author": "James Lynch",
"description": "Extract note content into new notes and split notes.",
"repo": "lynchjames/note-refactor-obsidian"
},
{
"id": "calendar",
"name": "Calendar",
"author": "Liam Cain",
"description": "Simple calendar widget for Obsidian.",
"repo": "liamcain/obsidian-calendar-plugin"
},
{
"id": "mrj-text-expand",
"name": "Text expand",
"author": "MrJackphil",
"description": "Search and paste/transclude links to found files.",
"repo": "mrjackphil/obsidian-text-expand"
},
{
"id": "mrj-jump-to-link",
"name": "Jump to link",
"author": "MrJackphil",
"description": "Quickly navigate between links, or jump to any word on the page using hotkeys.",
"repo": "mrjackphil/obsidian-jump-to-link"
},
{
"id": "obsidian-reading-time",
"name": "Reading Time",
"author": "avr",
"description": "Add the current note's reading time to Obsidian's status bar.",
"repo": "avr/obsidian-reading-time"
},
{
"id": "todoist-sync-plugin",
"name": "Todoist Sync Plugin",
"author": "jamiebrynes7",
"description": "Materialize Todoist tasks within Obsidian notes.",
"repo": "jamiebrynes7/obsidian-todoist-plugin"
},
{
"id": "obsidian-vimrc-support",
"name": "Vimrc Support",
"author": "esm",
"description": "Auto-load a startup file with Obsidian Vim commands.",
"repo": "esm7/obsidian-vimrc-support"
},
{
"id": "shortcuts-extender",
"name": "Shortcuts extender",
"author": "kitchenrunner",
"description": "Use shortcuts for input special symbols without language switching.",
"repo": "ryjjin/Obsidian-shortcuts-extender"
},
{
"id": "mrj-crosslink-between-notes",
"name": "Add links to current note",
"author": "MrJackphil",
"description": "Adds a command to add a link to the current note at the bottom of selected notes.",
"repo": "mrjackphil/obsidian-crosslink-between-notes"
},
{
"id": "darlal-switcher-plus",
"name": "Quick Switcher++",
"author": "darlal",
"description": "Enhanced Quick Switcher, search open panels, and symbols.",
"repo": "darlal/obsidian-switcher-plus"
},
{
"id": "obsidian-day-planner",
"name": "Day Planner",
"author": "James Lynch (continued by Ivan Lednev)",
"description": "Day planning from a task list in a Markdown note with enhanced time block functionality.",
"repo": "ivan-lednev/obsidian-day-planner"
},
{
"id": "cm-editor-syntax-highlight-obsidian",
"name": "Editor Syntax Highlight",
"author": "death_au",
"description": "Show syntax highlighing in code blocks the editor.",
"repo": "deathau/cm-editor-syntax-highlight-obsidian"
},
{
"id": "review-obsidian",
"name": "Review",
"author": "ryanjamurphy",
"description": "Add a link to the current note to a daily note on a future date (or a past date, you time traveller).",
"repo": "ryanjamurphy/review-obsidian"
},
{
"id": "obsidian-hider",
"name": "Hider",
"author": "@kepano",
"description": "Hide UI elements such as tooltips, status, titlebar and more.",
"repo": "kepano/obsidian-hider"
},
{
"id": "obsidian-minimal-settings",
"name": "Minimal Theme Settings",
"author": "@kepano",
"description": "Control the colors and fonts in Minimal Theme.",
"repo": "kepano/obsidian-minimal-settings"
},
{
"id": "obsidian-discordrpc",
"name": "Discord Rich Presence",
"author": "Luke Leppan",
"description": "Update your Discord Status to show your friends what you are working on in Obsidian.",
"repo": "lukeleppan/obsidian-discordrpc"
},
{
"id": "templater-obsidian",
"name": "Templater",
"author": "SilentVoid",
"description": "Create and use templates.",
"repo": "SilentVoid13/Templater"
},
{
"id": "convert-url-to-iframe",
"name": "Convert url to preview (iframe)",
"author": "FHachez",
"description": "Convert a URL (e.g. YouTube) into an iframe (preview).",
"repo": "FHachez/obsidian-convert-url-to-iframe"
},
{
"id": "searchpp",
"name": "Search++",
"author": "Noureddine Haouari",
"description": "Allow inserting text context search results on the active note, the plugin is based on the plugin mrj-text-expand-witb-text by MrJackphil.",
"repo": "nhaouari/searchpp"
},
{
"id": "better-word-count",
"name": "Better Word Count",
"author": "Luke Leppan",
"description": "Counts the words of selected text in the editor.",
"repo": "lukeleppan/better-word-count"
},
{
"id": "workbench-obsidian",
"name": "Workbench",
"author": "ryanjamurphy",
"description": "Keep a workbench of knowledge materials.",
"repo": "ryanjamurphy/workbench-obsidian"
},
{
"id": "obsidian-latex-environments",
"name": "Latex Environments",
"author": "Zach Raines",
"description": "Quickly insert and change LaTeX environments within math environments.",
"repo": "raineszm/obsidian-latex-environments"
},
{
"id": "obsidian-rtl",
"name": "RTL Support",
"author": "esm",
"description": "Right to Left (RTL) text direction support for languages like Arabic, Hebrew and Farsi.",
"repo": "esm7/obsidian-rtl"
},
{
"id": "markdown-prettifier",
"name": "Markdown prettifier",
"description": "Fix and reformats ugly Markdown.",
"author": "pelao",
"repo": "cristianvasquez/obsidian-prettify"
},
{
"id": "css-snippets",
"name": "css snippets",
"description": "Load and manage CSS snippets.",
"author": "Daniel Brandenburg",
"repo": "jdbrice/obsidian-css-snippets"
},
{
"id": "obsidian-link-indexer",
"name": "Link indexer",
"description": "Generate index notes with links based on various conditions.",
"author": "Yuliya Bagriy",
"repo": "aviskase/obsidian-link-indexer"
},
{
"id": "macOS-keyboard-nav-obsidian",
"name": "macOS Keyboard Navigation",
"description": "Enables alt+↑ and alt+↓ keyboard navigation in Obsidian.",
"author": "ryanjamurphy",
"repo": "ryanjamurphy/macOS-keyboard-nav-obsidian"
},
{
"id": "extract-highlights-plugin",
"name": "Extract Highlights",
"description": "Allows you to extract all ==highlights== in a note into your clipboard.",
"author": "Alexis Rondeau",
"repo": "akaalias/extract-highlights-plugin"
},
{
"id": "find-unlinked-files",
"name": "Find orphaned files and broken links",
"description": "Find files that are not linked anywhere and would otherwise be lost in your vault. In other words: files with no backlinks.",
"author": "Vinzent",
"repo": "Vinzent03/find-unlinked-files"
},
{
"id": "wikilinks-to-mdlinks-obsidian",
"name": "Wikilinks to MDLinks",
"author": "Agatha Uy",
"description": "Convert wikilinks to Markdown links and vice versa.",
"repo": "agathauy/wikilinks-to-mdlinks-obsidian"
},
{
"id": "smart-random-note",
"name": "Smart Random Note",
"author": "Eric Hall",
"description": "Open random notes with greater control.",
"repo": "erichalldev/obsidian-smart-random-note"
},
{
"id": "cycle-through-panes",
"name": "Tab Switcher",
"author": "Vinzent & phibr0",
"description": "Switch your tabs with Ctrl + Tab in recently used order like in a browser.",
"repo": "Vinzent03/tab-switcher"
},
{
"id": "music-code-blocks",
"name": "ABC Music Notation",
"author": "Til Blechschmidt",
"description": "Render music sheets directly from code blocks using ABC music notation via abcjs",
"repo": "abcjs-music/obsidian-plugin-abcjs"
},
{
"id": "cm-typewriter-scroll-obsidian",
"name": "Typewriter Scroll",
"author": "death_au",
"description": "Typewriter-style scrolling which keeps the view centered in the editor.",
"repo": "deathau/cm-typewriter-scroll-obsidian"
},
{
"id": "obsidian-youglish-plugin",
"name": "Youglish Plugin",
"description": "Use YouTube to improve your pronunciation. YouGlish plugin gives you fast, unbiased answers about how words is spoken by real people and in context.",
"author": "Noureddine Haouari",
"repo": "nhaouari/obsidian-youglish-plugin"
},
{
"id": "obsidian-dangling-links",
"name": "Dangling links",
"author": "Graydon Hoare",
"description": "Adds a panel showing any dangling links in a vault.",
"repo": "graydon/obsidian-dangling-links"
},
{
"id": "dangerzone-writing-plugin",
"name": "Dangerzone Writing",
"author": "Alexis Rondeau",
"description": "This plugin is dangerous! When you start it, you have to write without stopping for 100 seconds. If you stop, think and look around, after 3 seconds the plugin will DELETE what you've written in this note.",
"repo": "akaalias/dangerzone-writing-plugin"
},
{
"id": "maximise-active-pane-obsidian",
"name": "Maximise Active Pane",
"author": "death_au",
"description": "Fills the workspace with the active pane.",
"repo": "deathau/maximise-active-pane-obsidian"
},
{
"id": "obsidian-juliandate",
"name": "Julian Date",
"author": "thek3nger",
"description": "Add a shortcut to insert the current Julian date for astronomical observations.",
"repo": "THeK3nger/obsidian-juliandate"
},
{
"id": "obsidian-emoji-toolbar",
"name": "Emoji Toolbar",
"author": "oliveryh",
"description": "Quickly search for and insert emojis into your editor.",
"repo": "oliveryh/obsidian-emoji-toolbar"
},
{
"id": "obsidian-fullscreen-plugin",
"name": "Fullscreen Focus Mode",
"author": "Razum",
"description": "Adds a command to view a single document leaf in a fullscreen focus mode.",
"repo": "Razumihin/obsidian-fullscreen-plugin"
},
{
"id": "footlinks",
"name": "Footlinks",
"author": "Daha",
"description": "Extracts URLs from main text to footer.",
"repo": "DahaWong/obsidian-footlinks"
},
{
"id": "obsidian-mind-map",
"name": "Mind Map",
"author": "James Lynch",
"description": "Displays Markdown notes as mind maps using Markmap.",
"repo": "lynchjames/obsidian-mind-map"
},
{
"id": "flashcards-obsidian",
"name": "Flashcards",
"author": "Alex Colucci",
"description": "Anki integration.",
"repo": "reuseman/flashcards-obsidian"
},
{
"id": "completed-area",
"name": "Completed Area",
"author": "Daha",
"description": "Move completed to-do items to a separate completed area.",
"repo": "DahaWong/obsidian-completed-area"
},
{
"id": "obsidian-citation-plugin",
"name": "Citations",
"author": "Jon Gauthier",
"description": "Automatically search and insert citations from a Zotero library.",
"repo": "hans/obsidian-citation-plugin"
},
{
"id": "obsidian-to-anki-plugin",
"name": "Obsidian_to_Anki",
"author": "Pseudonium",
"description": "This is an Anki integration plugin! Designed for efficient bulk exporting.",
"repo": "Pseudonium/Obsidian_to_Anki"
},
{
"id": "obsidian-rollover-daily-todos",
"name": "Rollover Daily Todos",
"author": "Matt Sessions",
"description": "Rollover any unchecked checkboxes from your last daily note into today's note.",
"repo": "lumoe/obsidian-rollover-daily-todos"
},
{
"id": "obsidian-reveal-active-file",
"name": "Automatically reveal active file",
"author": "Matt Sessions",
"description": "Automatically reveal the currently active file in the side navigation.",
"repo": "shichongrui/obsidian-reveal-active-file"
},
{
"id": "obsidian-export-to-tex",
"name": "Export To TeX",
"author": "Zach Raines",
"description": "Export vault files in a format amenable to pasting into a TeX document.",
"repo": "raineszm/obsidian-export-to-tex"
},
{
"id": "obsidian-latex",
"name": "Extended MathJax",
"author": "Xavier Denis & Ng Wei En",
"description": "Enables additional MathJax packages and adds a global preamble for MathJax.",
"repo": "wei2912/obsidian-latex"
},
{
"id": "obsidian-apple-reminders-plugin",
"name": "Apple Reminders",
"author": "Rishi Raval",
"description": "Attempt to bring Apple Reminders into Obsidian.",
"repo": "urishiraval/obsidian-apple-reminders-plugin"
},
{
"id": "obsidian-contextual-typography",
"name": "Contextual Typography",
"author": "mgmeyers",
"description": "Adds a data-tag-name attribute to all top-level divs in preview mode containing the child's tag name, allowing contextual typography styling.",
"repo": "mgmeyers/obsidian-contextual-typography"
},
{
"id": "neo4j-graph-view",
"name": "Neo4j Graph View",
"author": "Emile van Krieken",
"description": "Advanced graph visualization and querying using Neo4j.",
"repo": "HEmile/obsidian-neo4j-graph-view"
},
{
"id": "snippets",
"name": "Snippets plugin",
"author": "Pelao",
"description": "Execute simple scripts/snippets from Obsidian. This plugin is experimental.",
"repo": "cristianvasquez/obsidian-snippets-plugin"
},
{
"id": "obsidian-temple",
"name": "Temple",
"author": "garyng",
"description": "Templating in Obsidian, powered by Nunjucks.",
"repo": "garyng/obsidian-temple"
},
{
"id": "obsidian-relative-line-numbers",
"name": "Relative Line Numbers",
"author": "Nadav Spiegelman",
"description": "Enables relative line numbers in editor mode.",
"repo": "nadavspi/obsidian-relative-line-numbers"
},
{
"id": "obsidian-charts",
"name": "Obsidian Charts",
"author": "phibr0",
"description": "Easily create Charts within Obsidian!",
"repo": "phibr0/obsidian-charts"
},
{
"id": "discordian-plugin",
"name": "Discordian Theme",
"author": "@radekkozak",
"description": "Fine-grained control of Discordian Theme.",
"repo": "radekkozak/discordian-plugin"
},
{
"id": "obsidian-autocomplete-plugin",
"name": "Autocomplete",
"author": "Yeboster",
"description": "Provides a text autocomplete feature to enhance typing speed.",
"repo": "Yeboster/autocomplete-obsidian"
},
{
"id": "completed-task-display",
"name": "Completed Task Display",
"author": "Ben Lee-Cohen",
"description": "Provides controls for displaying or hiding completed tasks.",
"repo": "heliostatic/completed-task-display"
},
{
"id": "obsidian-extract-pdf-highlights",
"name": "PDF Highlights",
"author": "Alexis Rondeau",
"description": "Extract highlights, underlines and annotations from your PDFs into Obsidian.",
"repo": "akaalias/obsidian-extract-pdf-highlights"
},
{
"id": "youhavebeenstaring-plugin",
"name": "YouHaveBeenStaring",
"author": "Felix Almer",
"description": "Tells you in the status bar for how long you've been staring at your Obsidian vault. Well - at least how long your vault is open.",
"repo": "fxal/obsidian-youhavebeenstaring-plugin"
},
{
"id": "obsidian-metatemplates",
"name": "metatemplates",
"author": "avirut",
"description": "Generate notes from templates using YAML frontmatter.",
"repo": "avirut/obsidian-metatemplates"
},
{
"id": "obsidian-imgur-plugin",
"name": "Imgur Plugin",
"author": "Kirill Gavrilov",
"description": "Uploads images from your clipboard to imgur.com and embeds uploaded image to your note.",
"repo": "gavvvr/obsidian-imgur-plugin"
},
{
"id": "obsidian-checklist-plugin",
"name": "Checklist",
"author": "delashum",
"description": "Consolidate checklists across all files into a single view.",
"repo": "delashum/obsidian-checklist-plugin"
},
{
"id": "obsidian-text-expander",
"name": "Text Expander",
"author": "Nikita Konodyuk",
"description": "Expand text shortcuts, run shell commands and Python scripts right in your editor.",
"repo": "konodyuk/obsidian-text-expander"
},
{
"id": "search-on-internet",
"name": "Search on Internet",
"author": "Emile",
"description": "Add context menu items to search the internet based on the title of your note.",
"repo": "HEmile/obsidian-search-on-internet"
},
{
"id": "obsidian-file-path-to-uri",
"name": "File path to URI",
"author": "Michal Bureš",
"description": "Convert file path to uri for easier use of links to local files outside of Obsidian.",
"repo": "MichalBures/obsidian-file-path-to-uri"
},
{
"id": "page-heading-from-links",
"name": "Page Heading From Links",
"author": "Mark Beattie",
"description": "Inserts a heading into blank pages from the file name.",
"repo": "beet/page-headings-obsidian-plugin"
},
{
"id": "obsidian-icons-plugin",
"name": "Icons",
"author": "Camillo Visini",
"description": "Add icons to your notes.",
"repo": "visini/obsidian-icons-plugin"
},
{
"id": "folder-note-plugin",
"name": "Folder Note",
"author": "xpgo",
"description": "Add description note to a folder.",
"repo": "xpgo/obsidian-folder-note-plugin"
},
{
"id": "vantage-obsidian",
"name": "Vantage - Advanced search builder",
"author": "ryanjamurphy",
"description": "Build advanced search queries in Obsidian.",
"repo": "ryanjamurphy/vantage-obsidian"
},
{
"id": "obsidian-sort-and-permute-lines",
"name": "Sort & Permute lines",
"description": "Sort and Permute lines in whole file or selection.",
"author": "Vinzent",
"repo": "Vinzent03/obsidian-sort-and-permute-lines"
},
{
"id": "obsidian-min3ditorhotkeys-plugin",
"name": "Min3ditorHotkeys",
"author": "Davor Sauer",
"description": "Additional editor hotkeys inspired by coding editors.",
"repo": "d-sauer/Obsidian-Min3ditorHotkeys-plugin"
},
{
"id": "obsidian-jsonifier",
"name": "JSONifier",
"author": "Kjell Connelly",
"description": "JSON.stringify() or JSON.parse() highlighted text and copy to clipboard.",
"repo": "KjellConnelly/obsidian-jsonifier"
},
{
"id": "things-logbook",
"name": "Things Logbook",
"author": "Liam Cain",
"description": "Sync your Things logbook with your daily notes.",
"repo": "liamcain/obsidian-things-logbook"
},
{
"id": "obsidian-shortcuts-for-starred-files",
"name": "Hotkeys for Bookmarks",
"description": "Set an individual hotkey for the first 9 starred files and open them just with your keyboard.",
"author": "Vinzent",
"repo": "Vinzent03/obsidian-shortcuts-for-starred-files"
},
{
"id": "obsidian-filename-heading-sync",
"name": "Filename Heading Sync",
"description": "Keep the filename with the first heading of a file in sync.",
"author": "dvcrn",
"repo": "dvcrn/obsidian-filename-heading-sync"
},
{
"id": "obsidian-orthography",
"name": "Obsidian Orthography",
"author": "denisoed",
"description": "Check & fix orthography errors in text.",
"repo": "denisoed/obsidian-orthography"
},
{
"id": "obsidian-query-language",
"name": "Obsidian Query Language",
"author": "Joost Plattel",
"description": "Query notes and represent data within Obsidian.",
"repo": "jplattel/obsidian-query-language"
},
{
"id": "obsidian-markdown-formatting-assistant-plugin",
"name": "Markdown Formatting Assistant",
"author": "Reocin",
"description": "Provides a simple editor for Markdown and in addition a command line interface. The command line interface facilitate a faster workflow.",
"repo": "Reocin/obsidian-markdown-formatting-assistant-plugin"
},
{
"id": "obsidian-journey-plugin",
"name": "Journey",
"author": "Alexis Rondeau",
"description": "Discover the story between your notes.",
"repo": "akaalias/obsidian-journey-plugin"
},
{
"id": "tag-wrangler",
"name": "Tag Wrangler",
"author": "PJ Eby",
"description": "Rename, merge, toggle, and search tags from the tag pane.",
"repo": "pjeby/tag-wrangler"
},
{
"id": "better-pdf-plugin",
"name": "Better PDF Plugin",
"author": "MSzturc",
"description": "Insert, scale, rotate and cut-out PDF pages into your notes.",
"repo": "MSzturc/obsidian-better-pdf-plugin"
},
{
"id": "dataview",
"name": "Dataview",
"author": "Michael Brenan",
"description": "Advanced queries over your vault for the data-obsessed.",
"repo": "blacksmithgu/obsidian-dataview"
},
{
"id": "periodic-notes",
"name": "Periodic Notes",
"author": "Liam Cain",
"description": "Create/manage your daily, weekly, and monthly notes.",
"repo": "liamcain/obsidian-periodic-notes"
},
{
"id": "obsidian-show-file-path",
"name": "Show Current File Path",
"author": "Ravi Mashru",
"description": "Show the full path of the currently open file in the status bar.",
"repo": "ravimashru/obsidian-show-file-path"
},
{
"id": "obsidian-paper-cut",
"name": "PaperCut",
"author": "darakah",
"description": "Express an idea in the simplest possible way ... or else.",
"repo": "Darakah/obsidian-paper-cut"
},
{
"id": "obsidian-comments",
"name": "Comments",
"author": "darakah",
"description": "Add, track and easily navigate between a note's comments.",
"repo": "Darakah/obsidian-comments-plugin"
},
{
"id": "ini-obsidian",
"name": "ini Editor",
"author": "death_au",
"description": "Edit .ini files in Obsidian.",
"repo": "deathau/ini-obsidian"
},
{
"id": "various-complements",
"name": "Various Complements",
"author": "tadashi-aikawa",
"description": "Enables you to complete words like the auto-completion of IDE.",
"repo": "tadashi-aikawa/obsidian-various-complements-plugin"
},
{
"id": "obsidian-timelines",
"name": "Timelines",
"author": "darakah",
"description": "Create a timeline view of all notes with the specified combination of tags.",
"repo": "Darakah/obsidian-timelines"
},
{
"id": "txt-as-md-obsidian",
"name": "txt as md",
"author": "death_au",
"description": "Edit .txt files as Markdown in Obsidian.",
"repo": "deathau/txt-as-md-obsidian"
},
{
"id": "note-folder-autorename",
"name": "Note Folder Autorename",
"author": "PJ Eby",
"description": "Turn notes into folders and automaticaly move/rename their folders when they move or are renamed.",
"repo": "pjeby/note-folder-autorename"
},
{
"id": "daily-activity",
"name": "Daily Activity",
"description": "This outputs a list of the files changed/created today in the active file.",
"author": "trydalch",
"repo": "trydalch/obsidian-daily-activity"
},
{
"id": "obsidian-daily-stats",
"name": "Daily Stats",
"description": "Track your daily word count.",
"author": "Dhruvik Parikh",
"repo": "dhruvik7/obsidian-daily-stats"
},
{
"id": "open-note-to-window-title",
"name": "Custom window title",
"description": "Shows the current open note in the window title.",
"author": "Joost Plattel",
"repo": "jplattel/open-note-to-window-title"
},
{
"id": "meld-encrypt",
"name": "Meld Encrypt",
"description": "Hide secrets in your notes.",
"author": "meld-cp",
"repo": "meld-cp/obsidian-encrypt"
},
{
"id": "obsidian-vault-statistics-plugin",
"name": "Vault Statistics",
"description": "Status bar item with vault statistics such as number of notes, files, attachments, and links.",
"author": "Bryan Kyle",
"repo": "bkyle/obsidian-vault-statistics-plugin"
},
{
"id": "obsidian-plugin-todo",
"name": "Obsidian TODO | Text-based GTD",
"description": "Text-based GTD in Obsidian. Collects all outstanding TODOs from your vault and presents them in lists Today, Scheduled, Inbox and Someday/Maybe.",
"author": "Lars Lockefeer",
"repo": "larslockefeer/obsidian-plugin-todo"
},
{
"id": "obsidian-hotkeys-for-specific-files",
"name": "Hotkeys for specific files",
"description": "Add commands for specific files and open them with a hotkey.",
"author": "Vinzent",
"repo": "Vinzent03/obsidian-hotkeys-for-specific-files"
},
{
"id": "csv-obsidian",
"name": "CSV Editor",
"description": "Edit CSV files in Obsidian.",
"author": "death_au",
"repo": "deathau/csv-obsidian"
},
{
"id": "obsidian-plugin-toc",
"name": "Table of Contents",
"description": "Create a table of contents for a note.",
"author": "hipstersmoothie",
"repo": "hipstersmoothie/obsidian-plugin-toc"
},
{
"id": "mochi-cards-exporter",
"name": "Mochi Cards Exporter",
"description": "Export Markdown notes to Mochi cards from within Obsidian.",
"author": "kalbetre",
"repo": "kalbetredev/mochi-cards-exporter"
},
{
"id": "obsidian-plugin-prettier",
"name": "Prettier Format",
"description": "Opinionated formatting for your notes.",
"author": "Andrew Lisowski",
"repo": "hipstersmoothie/obsidian-plugin-prettier"
},
{
"id": "obsidian-furigana",
"name": "Furigana",
"description": "Helper plugin for furigana and <ruby>.",
"author": "Koppa",
"repo": "uonr/obsidian-furigana"
},
{
"id": "obsidian-vault-changelog",
"name": "Vault Changelog",
"description": "Maintain a changelog of recently edited files in your vault.",
"author": "Badr Bouslikhin",
"repo": "badrbouslikhin/obsidian-vault-changelog"
},
{
"id": "chesser-obsidian",
"name": "Chesser",
"description": "A chess game viewer/editor.",
"author": "SilentVoid",
"repo": "SilentVoid13/Chesser"
},
{
"id": "obsidian-activity-history",
"name": "Activity History",
"description": "Track activity of specified projects, Github like activity board.",
"author": "darakah",
"repo": "Darakah/obsidian-activity-history"
},
{
"id": "obsidian-chessboard",
"name": "Chessboard Viewer",
"description": "Render chess positions diagrams in note preview.",
"author": "Davide Aversa",
"repo": "THeK3nger/obsidian-chessboard"
},
{
"id": "obsidian-footnotes",
"name": "Footnote Shortcut",
"description": "Makes creating footnotes in Obsidian more fun!",
"author": "Alexis Rondeau, Micha Brugger",
"repo": "MichaBrugger/obsidian-footnotes"
},
{
"id": "obsidian-gallery",
"name": "Gallery",
"description": "Interactive card-like gallery display of images.",
"author": "darakah",
"repo": "Darakah/obsidian-gallery"
},
{
"id": "notetweet",
"name": "NoteTweet",
"description": "Post tweets from Obsidian.",
"author": "Christian B. B. Houmann",
"repo": "chhoumann/notetweet_obsidian"
},
{
"id": "code-block-from-selection",
"name": "Code block from selection",
"description": "Adds code block for the selected text.",
"author": "Dmitry Savosh",
"repo": "dy-sh/obsidian-code-block-from-selection"
},
{
"id": "format-hotkeys-obsidian",
"name": "Format Hotkeys",
"author": "Ansel Santosa",
"description": "Google Docs style formatting hotkeys for Obsidian.",
"repo": "anstosa/format-hotkeys-obsidian"
},
{
"id": "obsidian-leaflet-plugin",
"name": "Obsidian Leaflet",
"description": "Interactive maps inside your notes.",
"author": "Jeremy Valentine",
"repo": "javalent/obsidian-leaflet"
},
{
"id": "remember-cursor-position",
"name": "Remember cursor position",
"description": "Remember cursor and scroll position for each note.",
"author": "Dmitry Savosh",
"repo": "dy-sh/obsidian-remember-cursor-position"
},
{
"id": "pane-relief",
"name": "Pane Relief",
"author": "PJ Eby",
"description": "Per-pane history, hotkeys for pane movement + navigation, and more.",
"repo": "pjeby/pane-relief"
},
{
"id": "DEVONlink-obsidian",
"name": "DEVONlink",
"description": "Open or reveal the current note in DEVONthink.",
"author": "ryanjamurphy",
"repo": "ryanjamurphy/DEVONlink-obsidian"
},
{
"id": "hotkey-helper",
"name": "Hotkey Helper",
"author": "PJ Eby",
"description": "Easily see and access any plugin's settings or hotkey assignments (and conflicts) from the Community Plugins tab",
"repo": "pjeby/hotkey-helper"
},
{
"id": "text-snippets-obsidian",
"name": "Text Snippets",
"author": "Ariana Khitrova",
"description": "Snippets for faster typing. Allows you to replace text templates, create your own, and expand text shortcuts.",
"repo": "ArianaKhit/text-snippets-obsidian"
},
{
"id": "consistent-attachments-and-links",
"name": "Consistent attachments and links",
"description": "Move note attachments and update links automatically.",
"author": "Dmitry Savosh",
"repo": "dy-sh/obsidian-consistent-attachments-and-links"
},
{
"id": "obsidian-plantuml",
"name": "PlantUML",
"description": "Generate PlantUML diagrams.",
"author": "Johannes Theiner",
"repo": "joethei/obsidian-plantuml"
},
{
"id": "imdone-obsidian-plugin",
"name": "Open cards in imdone from Obsidian.",
"description": "Open cards in imdone kanban from their source in Obsidian. Open cards from imdone in Obsidian at their source.",
"author": "saxmanjes",
"repo": "imdone/imdone-obsidian-plugin"
},
{
"id": "obsidian-spotlight",
"name": "Spotlight",
"description": "Block that features random notes or block of a note from vault / in a specified project or with a certain combination of tags.",
"author": "darakah",
"repo": "Darakah/obsidian-spotlight"
},
{
"id": "unique-attachments",
"name": "Unique attachments",
"description": "Rename attachments, making their names unique (based on hashing of file content).",
"author": "Dmitry Savosh",
"repo": "dy-sh/obsidian-unique-attachments"
},
{
"id": "obsidian-dice-roller",
"name": "Dice Roller",
"description": "Add a little randomness to your notes!",
"author": "Jeremy Valentine",
"repo": "javalent/dice-roller"
},
{
"id": "obsidian-languagetool-plugin",
"name": "LanguageTool Integration",
"description": "advanced spell/grammar checks with the help of language-tool.",
"author": "Clemens Ertle",
"repo": "Clemens-E/obsidian-languagetool-plugin"
},
{
"id": "obsidian-commits",
"name": "Commits",
"description": "Track & show commits in Obsidian vault or specified project.",
"author": "darakah",
"repo": "Darakah/obsidian-commits"
},
{
"id": "obsidian-outliner",
"name": "Outliner",
"description": "Work with your lists like in Workflowy or Roam Research.",
"author": "Viacheslav Slinko",
"repo": "vslinko/obsidian-outliner"
},
{
"id": "extract-url",
"name": "Extract url content",
"description": "Extract URL converting content into Markdown.",
"author": "Stephen Solka",
"repo": "trashhalo/obsidian-extract-url"
},
{
"id": "find-and-replace-in-selection",
"name": "Find and replace in selection",
"description": "Finds what you are looking for in the selected text and replaces it with the specified text.",
"author": "Dmitry Savosh",