Tag Buddy

by David Fasullo
5
4
3
2
1
Score: 58/100

Description

The Tag Buddy plugin enhances tag management in Obsidian by providing advanced features to add, remove, and edit tags in Reading Mode. Users can interact with tags individually, across a note, or throughout the vault with actions like renaming, changing case, and converting tags to text. The plugin supports generating dynamic tag summaries, enabling users to organize and process tagged content effectively. Tag summaries allow for copying or moving tagged paragraphs to specific sections within notes, creating a streamlined workflow for managing content. These features make it a powerful tool for organizing and connecting ideas using tags.

Reviews

No reviews yet.

Stats

41
stars
5,876
downloads
0
forks
957
days
25
days
25
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
24
total issues
8
open issues
16
closed issues
48
commits

Latest Version

a month ago

Changelog

Release notes for Tag Buddy 0.6.9.

Highlights:

  • Safer Reading Mode tag edits with better source-position validation and refresh notices.
  • More reliable Tag Actions modal behavior for single-instance, note-wide, and vault-wide tag changes.
  • Refined tag-summary headers, item controls, mobile sizing, spacing, and truncation.
  • Cleaner copied, flattened, and new-note summary output.
  • Safer add/remove/edit handling in unsupported contexts and frontmatter/properties comparisons.
  • New summary button visibility settings and clearer recent-tag validation.
  • Maintenance cleanup for parser patterns, UI text, docs assets, and release artifacts.

Assets included:

  • manifest.json
  • main.js
  • styles.css

README file from

Github

GitHub release (latest SemVer) GitHub All Releases

Obsidian Tag Buddy 🔖

Unlock powerful tag editing features in Reading Mode. Add, remove, and edit tags across your vault, in the active note or a single instance. Use tag summaries to roundup and process tagged content like an inbox.

🔎 Documentation below ⬇️

🎬 As seen in Capture and curate ideas: Modern note taking for creatives

Demo Video

✏️ Add tags to note

CMD+RIGHT-CLICK (or TRIPLE-TAP on mobile) displays a tag selector to chose a recent/favorite tag or create a new tag in any native markdown note, embedded content or tag summary (explained below).

Add Tag Demo

🧼 Remove tags and nested tags

By default, a CLICK (or DOUBLE-TAP on mobile) removes a tag. Nested tags will be removed from the deepest tag first. And you can customize these actions with modifier keys. For example: you can preserve native tag search when CLICKING and assign CMD+CLICK to remove the tag. More on settings below.

Remove Tag Demo

🫥 Edit tags individually, all in note or across the vault

By default, CMD+CLICK (or LONG-PRESS on mobile) on a tag reveals the Tag Action modal. From here you apply the following actions to just the clicked tag, all of the same tag in this note, or all of the same tag across the entire vault:

  • Rename tag
  • Change case
  • Convert to text
  • Create tag summary

Edit Tag Demo Edit Tag Demo

🔎 Generate and interact with tag summaries

Tag summaries can be auto-generated when editing a tag (as seen above) or with this basic syntax. Use the same interaction for adding, removing or editing tags within summaries or native embeds, just as you would elsewhere.

Tag Summary Demo

Interact with results in tag summaries:

  • Copy paragraph to section in this note.
  • Copy paragraph to section in another note.
  • Move paragraph to section in this note. To achieve this, Tag Buddy first removes the queried tag from the paragraph, then copies it to the section.
  • Section dropdown is explained below.
  • Remove tag button removes the tag but doesn’t copy the paragraph.

Interact with the entire summary with summary buttons:

  • Reload the summary. Useful if you’re updating tags in queried notes.
  • Copy to clipboard copies the entire summary as markdown.
  • Copy the entire summary to another note.
  • Flatten summary converts the dynamic summary to standard markdown (replacing the code block).

All these buttons can be hidden in the settings outlined below.

📚 Copy or move paragraphs to a section

As noted above, each paragraph includes a dropdown to specify where the move or copy buttons should paste the tagged paragraph. “Top of note” and “End of note” are always available. But if you include a header section title in the tag summary, this will also become an option in the dropdown, as seem below. If a section is chosen, when copying or moving to another note, Tag Buddy will look for that section to paste the content. If the section isn’t found, it will paste to the top of the note. In all cases, when pasting Tag Buddy will try to detect the list type below the section header.

Copy To Section Demo

🧩 Tag summary code block

This is the full syntax for all the parameters you can pass to the tag-summary code block. Using the include, exclude, and max parameters of the tag summary code block you can easily customise and build new notes from tagged content.

```tag-summary
tags: #tag1 #tag2 // Results can have either of these tags 
include: #tag3 #tag4 // Results must have both these tags (optional)
exclude: #tag5 #tag6 // But not have these tags (optional)
section: Productivity // Header sections (optional)
max: 3 // Limits the results in the summary (optional)
```

Thanks to Tag Summary Plugin for the original code behind the summaries.

⚙️ Settings

Customize how Tag Buddy looks and functions across desktop and mobile.

Tag Buddy Settings Pt1 Tag Buddy Settings Pt2 Tag Buddy Settings Pt3

🧐 Why is this useful to me?

I use tags to connect ideas, but also as a flexible I/O or state/status management system. For example, most of my content comes in through daily notes with tags. Then I have specialized notes that query those tags into an "Inbox" section of the specialized note so I can review and process on-demand.

Why only Reading Mode?

Tag Buddy is about maintaining your flow state when reading or reviewing your notes. Tag editing functionality in Reading Mode means you can, for example, remove “new” from “#book/highlight/new”, or quickly add “#todo” without switching to Edit or Source Mode.

👍 Support a buddy

There’s lots to do and I’d like this plugin to grow with Obsidian and the community. Your support will ensure on-going development and maintenance.

📦 Install now

Obsidian approved December 6th, 2023! 🤘

  • If you're already using community plugins, click here to install from the Obsidian plugin store.
  • If you're new to Obsidian:
    1. Open Settings > Community Plugins
    2. Tap “Turn on Community Plugins” to access the store
    3. Search for Tag Buddy.
    4. Tap Install.
    5. After installation, tap Enable.
    6. Enjoy!

✨ Updates

Recent updates since the original main branch:

  • Safer Reading Mode tag editing

    • Better source-position checks before editing rendered tags.
    • Stale or out-of-sync rendered tags are blocked instead of editing the wrong source.
    • Clearer refresh notices when Tag Buddy needs the rendered tag positions rebuilt.
    • Safer handling for active notes, native embeds, and tag-summary results.
  • Improved Tag Actions modal

    • Rename, remove hash, lower-case, and create-summary actions are cleaner and more reliable.
    • Scope options support just this instance, all matching tags in this note, or matching tags across the vault.
    • Tag input is normalized and validated before source edits are made.
  • Tag summary layout and controls

    • Summary query tags and summary-level buttons now live in a configurable header.
    • Default summary controls are quieter: query tags plus refresh only.
    • Summary item links, copy/move buttons, and section dropdowns are aligned on one compact row.
    • Mobile sizing, truncation, spacing, and dividers were refined.
  • Cleaner tag-summary output

    • Copied, flattened, and new-note summary output removes matched query/include tags from body text.
    • Leading tag-only lines compact onto the following body line.
    • Link and paragraph line breaks are preserved more cleanly.
  • Better add/remove/edit reliability

    • Add-tag behavior has safer source detection and clearer failure notices.
    • Remove/edit actions avoid unsupported contexts such as Canvas and unknown non-Markdown views.
    • Frontmatter/properties tags are skipped when comparing rendered Reading Mode body tags to source tags.
  • Settings and UI cleanup

    • New visibility settings for summary header buttons.
    • Recent tag settings validation is clearer.
    • UI text and notices were centralized for consistency.
  • Maintenance and release cleanup

    • TypeScript/tooling dependencies were updated.
    • Tag parsing and summary parsing patterns were centralized.
    • README media assets moved into docs/assets/ with branch-relative links.
    • Release artifacts can be built and verified before publishing.

👍 Support a buddy

There’s lots to do and I’d like this plugin to grow with Obsidian and the community. Your support will ensure on-going development and maintenance.

🗒️ Notes

  • Switch to editing to undo any edits in the active note.
    • **Edits are permanent in embeds/summaries (unless that note is open in a tab).
  • Known limitations:
    • Editing tags within some other plugins or unknown view types is not supported, for now. Please reach out if you have a use case.
    • Checkboxes are superficially functional in summaries. But the state change isn't applied to the source file. This functionality might be beyond the scope of this plugin.
    • Two (or more) tag summaries or embeds in the same note referencing the same tags will lose sync with each other. Warnings have been implemented. WORKAROUND: Use the Refresh button below the tag summary to manually update.

Disclaimer

This plugin modifies your notes. And while there are multiple safety precautions, this plugin comes with no guarantee of any kind. Neither the author nor Obsidian are responsible for any loss of data or inconvenience. Use this plugin at your own risk. See complete license here.

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Homepage
5 years ago by mirnovov
An Obsidian plugin that opens a specified note, canvas, or workspace on startup, instead of the most recent one.
Tag Wrangler
5 years ago by PJ Eby
Rename, merge, toggle, and search tags from the Obsidian tag pane
MAKE.md
4 years ago by MAKE.md
Checklist
5 years ago by delashum
File Color
4 years ago by ecustic
An Obsidian plugin for setting colors on folders and files in the file tree.
Colored Tags
3 years ago by Pavel Frankov
Colorizes tags in different colors.
Longform
5 years ago by Kevin Barrett
A plugin for Obsidian that helps you write and edit novels, screenplays, and other long projects.
Task Genius
4 years ago by Boninall
Comprehensive task management plugin for Obsidian
Consistent attachments and links
5 years ago by Dmitry Savosh
Obsidian plugin. Move note with attachments.
Auto Note Mover
4 years ago by faru
This is a plugin for Obsidian (https://obsidian.md).
Zoottelkeeper
5 years ago by Akos Balasko
Obsidian plugin of Zoottelkeeper: An automated folder-level index file generator and maintainer.
Workspaces Plus
5 years ago by NothingIsLost
Quickly switch and manage Obsidian workspaces
Tasks Calendar Wrapper
3 years ago by zhuwenq
This plugin currently provides a timeline view to display your tasks from your obsidian valut, with customizable filters and renderring options.
Collapse All
5 years ago by Nathonius
Task Board
a year ago by Atmanand Gauns
An Obsidian plugin to view and manage your tasks from whole vault using much efficient boards using various methodologies.
Janitor
4 years ago by Gabriele Cannata
Performs various maintenance tasks on the Obsidian vault
Slash Commander
3 years ago by alephpiece
Customizable slash command list for Obsidian.md
Periodic PARA
3 years ago by YiBing Lin
Obsidian Plugin for combining P.A.R.A with Periodic Notes(LifeOS for Obsidian)
Colored Tags Wrangler
3 years ago by AndreasSasDev
Obsidian Plugin : Assign colors to tags. Has integrations with other plugins, like Kanban.
File Order
3 years ago by lukasbach
Obsidian plugin to reorder files with drag-and-drop by customizing a number-prefix in the filenames
Archiver
5 years ago by ivan-lednev
Archive completed tasks in your Obsidian vault (plus other org-mode-like features)
Task List Kanban
2 years ago by Chris Kerr
Dynamic Outline
2 years ago by theopavlove
Adds a customizable GitHub-like floating table of contents to Obsidian.
TickTickSync
3 years ago by thesamim
Bidirectional synchronization between Obsidian and TickTick. Mobile compatible.
Hotkeys for specific files
5 years ago by Vinzent
Vantage - Advanced search builder
5 years ago by ryanjamurphy
Vantage helps you build complex queries using Obsidian's native search tools.
Frontmatter Tag Sugest
4 years ago by Jonathan Miller
Autocompletes tags in Obsidian YAML frontmatter. No more deleting #!
Daily Note Outline
4 years ago by iiz
Add a custom view which shows outline of multiple daily notes with headings, links, tags and list items
ZettelFlow
3 years ago by RafaelGB
ZettelFlow is a plugin for Obsidian that helps you to create and manage your notes in a Zettelkasten way.
Folders to Graph
2 years ago by Ratibus11
Enhance your Obsidian graph view with folders and headings structure!
Multi Tag
3 years ago by fez-github
Obsidian plugin that allows the user to add a tag to all files in a folder. Not in active development. Now working on Multi-Properties, which covers most of this plugin's functionality.
ToggleList
4 years ago by Lite C
This is a simple plugin for Obsidian to overwrite the default behavior of toggle checkbox status. Also, it offers a simple way to toggle through frequently used attributes: task states, task tags, highlighted list, etc.
Nested tags graph
3 years ago by drpilman
A small plugin for Obsidian that links nested tags in graph view
Dangling links
6 years ago by Graydon Hoare
obsidian plugin for displaying dangling links
Tags Overview
3 years ago by Christian Wannerstedt
Obsidian plugin which adds an extended tags panel where tagged files can be overviewed, filtered and accessed in an easy way.
Daily Notes Viewer
4 years ago by Johnson0907
Folder Focus Mode
4 years ago by grochowski
Focus file explorer on chosen folder and its files and subdirectories, while hiding all the other elements.
HTML Tags Autocomplete
5 years ago by bicarlsen
Autocomplete HTML formatting tags.
AutoMOC
4 years ago by Diego Alcantara
Auto Hide
4 years ago by skelato1
This Obsidian plugin enables you to collapse (and expand) the sidebar easier.
Plugin Manager
3 years ago by ohm-en
Allows better management of Obsidian.md plugins.
Better Plugins Manager
2 years ago by zero
Tags Routes
2 years ago by Ken
This is a plugin for obsidian, to visualize files and tags as nodes in 3D graph.
Embedded Code Title
5 years ago by tadashi-aikawa
It is an Obsidian plugin which can embeds title to code blocks.
Auto Classifier
3 years ago by Hyeonseo Nam
Auto classification plugin for Obsidian using ChatGPT.
Custom window title
5 years ago by Joost Plattel
Small Obsidian plugin that updates the window title with the current open note
Proletarian Wizard Task Manager
2 years ago by Charles Feval
Obsidian plugin ot manage todos and projects directly from your notes.
Canvas Filter
3 years ago by Ivan Koshelev
Obsidian Canvas plugin that let's you show only pages / arrows with specific tags / colors / connections.
Quick Tagger
3 years ago by Gorkycreator
Quick tagger for Obsidian.md
Recent Notes
a year ago by Kamil Rudnicki
Recent Notes Plugin for Obsidian
Awesome Image
3 years ago by AwesomeDog
One-stop solution for image management.
Task Marker
4 years ago by wenlzhang
An Obsidian plugin to change task status and append text with hotkeys and right-click context menu.
Org Mode
5 years ago by ryanpcmcquen
Add Org Mode support to Obsidian.
Unique attachments
5 years ago by Dmitry Savosh
Obsidian plugin. Renames attachments, making their names unique.
Note Folder Autorename
5 years ago by PJ Eby
Obsidian plugin to support folder-overview notes by keeping their folder in sync
Improved Random Note
3 years ago by ShockThunder
Tag Page
3 years ago by Matthew Sumpter
An Obsidian plugin to create and manage dedicated Markdown pages for tags, with features to automatically populate and refresh content based on user-defined settings.
Smart Title
3 years ago by magooup
obsidian-plugin-smart-title
TodoTxt
3 years ago by Mark Grimes
Obsidian plugin to manage todotxt files
Week Planner
4 years ago by Ralf Wirdemann
Open with
5 years ago by phibr0
Vim Toggle
3 years ago by Conner Ohnesorge
This is a plugin that adds the ability to toggle on and off vim into obsidian with a nice notice to let you know when you switched.
Reading comments
3 years ago by BumbrT
Reading comments, for consuming books or large articles in markdown with https://obsidian.md/.
Insta TOC
2 years ago by Nick C.
Generate, update, and maintain a table of contents for your notes while typing in real time.
Tag Project
3 years ago by Odaimoko
Folder Links
2 years ago by Stefan Rausch
Obsidian Plugin that enables using links to folders.
Journaling
2 years ago by Ordeeper
View daily notes in a journal-like format, similar to Logseq. It enhances note organization and facilitates better reflection by consolidating daily notes into a continuous journaling view.
Fold Properties By Default
a year ago by Tommy Bergeron
Always have editor/metadata properties folded by default.
Smart Memos
2 years ago by Evan Moscoso
Super-human brainstorming and note-taking by smart transcribing your voice! This involves a complete transcript, a summary, an expansion on the concepts presented, and a fully customizable analysis of it for any use case you can think of!
Contacts
4 years ago by vbeskrovnov
With this plugin, you can easily organize and manage your contacts within Obsidian. Simply create a note with contact information and use the plugin's features to quickly search, and sort through your contacts. Contacts plugin also helps you to remember birthdays of your contacts and keeps track of the last time you met them.
YouTube Template
2 years ago by sundevista
📺 A plugin that would help you to fetch YouTube videos data into your vault.
LLM Summary
2 years ago by QSun
wip
Automatic Renumbering
2 years ago by Omri Levi
Automatically reorders checklists and numbered lists as you edit them.
Weekly Review
4 years ago by Brandon Boswell
Todo sort
4 years ago by Ryan Gomba
A plugin for Obsidian that sorts todos within a note
Media Companion
a year ago by Nick de Bruin
Rapid Notes
4 years ago by valteriomon
Sequence Hotkeys
4 years ago by Ruan Moolman
Obsidian plugin to support a sequenced of keyboard shortcuts to run commands.
Single File Daily Notes
2 years ago by Pranav Mangal
An Obsidian plugin to create and manage daily notes in a single file
Project Garden
4 years ago by Ben Goosman
Base Tag Renderer
4 years ago by Darren Kuro
A lightweight obsidian plugin to render the basename of tags in preview mode.
QuickLink
10 months ago by Jamba Hailar
On obsidian, use @ to quickly link files
VirtFolder
2 years ago by mr.grogrig
Creating a hierarchical structure like Luhmann's Zettelkasten
Command Alias
5 years ago by @Yajamon
Obsidianのコマンドに対してエイリアスを設定するプラグイン
Metadata Auto Classifier
2 years ago by Beomsu Koh
AI-powered Obsidian plugin that automatically classifies and generates metadata (tags, frontmatter) for your notes.
PARA Shortcuts
4 years ago by gOAT
This plugin serves usefull commands to setup and manage your knowledge using the PARA method.
TagMany
3 years ago by Joshua Martius
Tag many Notes at once in Obsidian
Auto Folder Collapse
2 years ago by Dario Casciato
A plugin for Obsidian that automatically collapses all child folders when you collapse a parent folder. This helps keep your file explorer organized and clutter-free.
Structured
5 years ago by dobrovolsky
Automatic Tags
3 years ago by Jamalam
Add tags to new notes automatically based on their path
Relation Pane
4 years ago by mottox2
Auto Tasks
2 years ago by Jamie Hurst
Obsidian plugin to combine periodic notes with tags and tasks to automatically manage your daily, weekly and project TODO lists. Requires the "Periodic Notes" and "Tasks" plugins.
Key-Value List
3 years ago by Christian Wannerstedt
Obsidian plugin which makes it easy to turn lists into formatted key value lists
Note archiver
3 years ago by thenomadlad
Swiss army knife
3 years ago by mwoz123
Content Cards
a year ago by leo
Insert content cards in Markdown, such as timeline, highlightblock, target card, book information card, music information card, movie information card, photoes ablum, business card, content subfield, countdown, SWOT,BCG.
SyncFTP
3 years ago by Alex Donnan
An Obsidian.md plugin that allows users to add their own SFTP host and credentials to sync to and from.
Broken Links
2 years ago by ipshing
Packrat
4 years ago by Thomas Herden
Process completed instances of recurring items created by the Obsidian Tasks plugin
Note Chain
2 years ago by ZigHolding
Package my frequently used tools, highly personal plugins.
FuzzyTag
4 years ago by Adrian
Custom State for Task List
3 years ago by Okami Wong
A plugin for Obsidian to define your own states for task items.
Linked Data Vocabularies
3 years ago by kometenstaub
Add linked data to the YAML of your Obsidian notes.
Liquid Templates
5 years ago by Diomede Tripicchio
Define your templates with LiquidJS tags support
AI Notes Summary
3 years ago by R. Ian Bull (irbull)
An Obsidian plugin that uses ChatGPT to generate a summary of referenced notes
Lite Gallery
2 years ago by Jordan Poles
open-as-md
3 years ago by kursad-k
open and edit preferred formats as markdown in Obsidian
Brainframe
3 years ago by pedersen
Prioritize
3 years ago by EloiMusk
Obsidian Plugin, to prioritize stuff in Obsidian
Tag Group Manager
8 months ago by Stargazer-cc
Tag Group Manager is a plugin designed for Obsidian that helps manage tag groups and quickly insert tags.
ZettelGPT
3 years ago by Overraddit
Turbocharge Your Note-taking with AI Assistance
Aggregator
4 years ago by SErAphLi
This plugin helps you gather information from files, and make a summary in the file.
koncham workspace
5 years ago by mano
obsidian workspace enhancement [not maintained]
Overdue
5 years ago by Peter Parente
Obsidian plugin that marks items as [[Overdue]] if they are not checked off by their due date
Note aliases
3 years ago by Pulsovi
This plugin manages wikilinks aliases and save them on the aliases list of the linked note
File chucker
4 years ago by Ken Lim
Auto File Organizer
2 years ago by mofukuru
Obsidian plugin: Automatically organizes files into folders based on their extensions.
Settings Management
2 years ago by Huajin
Manage settings options, including show enabled/disabled plugins and css, grid layout, save current plugins/css enable config for quick enable/disable, etc.
Fold Properties
2 years ago by James Alexandre
Adds Fold/Unfold Properties Function to Folder Context Menu
Flow
2 years ago by Ben Phillips
Implements key processes in David Allen's Getting Things Done (GTD) methodology
GTD No Next Step
3 years ago by Tobias Davis
Obsidian plugin for GTD workflow, badge projects with no next step.
External Link Helper
4 years ago by Jhonghee Park
Obsidian plugin for link suggestion
BuJo Bullets
2 years ago by Will Olson
Alternate checkbox types for Obsidian to support Bullet Journal bullets
Nav Link Header
2 years ago by ahts4962
Display navigation links at the top of the notes in Obsidian
EmoTagsTitler
3 years ago by Cyfine
Open File by Magic Date
4 years ago by simplgy
Order List
4 years ago by Henry Gustafson
Testing Vault
3 years ago by Michael Pedersen
Desk
3 years ago by David Landry
A desk for obsidian
Bellboy
4 years ago by Shaked Lokits
Opinionated file structure manager for the Obsidian knowledge base.
Potato Indexer
3 years ago by LoyalPotato
Obsidian plugin to generate index based on your selection
Extended Task Lists
2 years ago by joeriddles
Extended Markdown support for task lists in Obsidian.
TODO Wrangler
3 years ago by Jeel Shah
An obsidian plugin to wrangle your Todos and put them in their place.
Spacekeys
a year ago by Jared Lumpe
Obsidian plugin to define hotkeys based on sequences of keypresses.
Related Notes by Tag
a year ago by Chris Howard
displays notes that share tags with your currently active note
Feeds
3 years ago by LukeMT, pashashocky, madx
Magic feeds dataview query for obsidian
Expiration-Date-Tracker
3 years ago by Marius Wörfel
Opsidian plugin to keep track of all expiration dates, for example, for your groceries.
Journal Folder
2 years ago by Charl Fourie
Generate Timeline
a year ago by Shanshuimei
An obsidian plugin to generate timelines from tags, folders, files or metadata automatically. 根据标签,文件夹,文件或者属性自动生成时间轴的插件。
Index Notes
2 years ago by Alejandro Daniel Noel
Plugin that automatically generates index blocks based on tags
Custom save
3 years ago by Hananoshika Yomaru
add custom save action to your save command
Next Link
3 years ago by Juan Luque
Context Command Hider
a year ago by Mara-Li
This plugin allows you to hide every command from the Obsidian's right-click context menu.
File Manager
2 years ago by Juan Sicilia
A file manager plugin for Obsidian
At People
3 years ago by Tobias Davis
Obsidian plugin to use the familiar @ notation to cross link to people.
AI Summarize
2 years ago by Alp Sariyer
Easy to use AI Summary tool for your notes in Obsidian
Sort Frontmatter
3 years ago by Kanzi
Sort frontmatter automatically
Tag Breakdown Generator
3 years ago by Hananoshika Yomaru
Break down nested tags into multiple parent tags
Cursor Position History
a year ago by Florian Gubler
A Plugin to remember (and make accessible) the cursor history in Obsidian. Both within a file and across files.
Jira Issue Manager
a year ago by Alamion
Obisdian plugin to sync tasks between Obsidian and Jira
Cluster
2 years ago by Lorens Osman
Cluster plugin mainly designed to simplify the process of note clustering on mobile devices and work well on PCs ether
Note 2 Tag Generator
2 years ago by Augustin
Highlight Helper
3 years ago by Chongmyung Park
Helper to collect highlight in Obsidian
Editor Autofocus
3 years ago by Mgussekloo
New Note Fixer
a year ago by mnaoumov
Obsidian Plugin that unifies the way non-existing notes are created when clicking on their links
Simple Todo
2 years ago by elliotxx
A minimalist text-based todo manager (Text-Based GTD) for efficient task management in Obsidian.
Hierarchical Backlinks
2 years ago by Jason Motylinski
Plugin which displays backlinks as a tree structure based on file paths
Clipper Catalog
a year ago by Greg K.
A catalog view that provides a powerful interface for all your clipped web articles and content. Easily organize, search, and manage your web clippings within your vault.
Templated daily notes
2 years ago by digitorum
Allow to create templayted daily note in specific folder
Tag Formatter
2 years ago by snsvrno
Configurable Obsidian plugin that hides parent tags.
Canvas Blocks
2 years ago by Kay606
Folder by tags distributor
2 years ago by RevoTale
Automatically group Obsidian notes into folder by tags specified in note.
Quick Open
2 years ago by James Alexandre
Quickly select items in any modal using keyboard shortcuts. Supercharge your workflow with fast, efficient item selection in Obsidian modals.
Personal OS
2 years ago by A.Buot
Notice logger
2 years ago by @gapmiss
An Obsidian.md plugin for logging all notices to the developer console, with optional prefix & timestamp.
VARE
2 years ago by 4Source
This is a plugin for Obsidian (https://obsidian.md). Allows you to easily manage your plugins and themes inside Obsidian.
Redirect
4 years ago by Jacob Levernier
An Obsidian plugin for adding aliases to any file
Todos sort
2 years ago by Jiri Sifalda
A plugin for Obsidian that sorts todos within a note
Missing Link File Creator
a year ago by Lemon695
The plugin creates both missing links and the corresponding files.
Mass Create
2 years ago by vellikhor
Create large quantities of notes easily at one time.
Vault File Renamer
a year ago by Louan Fontenele
Vault File Renamer: Automatically standardizes file names to GitHub style (lowercase, no accents, only -, ., _) while preserving folder structure and file contents.
Alias Picker
2 years ago by rostunic
NodeFlow
2 years ago by LincZero
Render node streams like `ComfyUi`, `UE`, `Houdini`, `Blender`, etc., to make it easy to write relevant notes. json describes the chart, compared to screenshots, making it easier to modify later. The plugin is also compatible with blogs.",
Boost Link Suggestions
4 years ago by Jacob Levernier
An Obsidian (https://obsidian.md) plugin for altering the order of inline link suggestions by link count and manual boosts.
LinkMagic
2 years ago by AndyReifman
Beautiful Contact Cards
2 years ago by Seth Tenembaum
A plugin for the Obsidian text editor which renders "contact" code blocks with tappable links for phone, social media, etc.
Asana
a year ago by Ryan Bantz
Obsidan plugin that creates tasks in Asana for highlighted text or the current line
Tag Links
2 years ago by Zacchary Dempsey-Plante
A plugin for Obsidian that allows tags to be opened as links using a hotkey.
Hide Commands in Menu
a year ago by bomian98
Obsidian Plugin, hide different commands in different menus.
downloadPDF
2 years ago by Frieda
Peekaboo
2 years ago by Wang Guoshi
An Obsidian plugin protects your privacy by setting a password to hide notes.
MOC Link Helper
2 years ago by Bogdan Codreanu
This obsidian plugins allows you to quickly see which notes you need to include in your MOC.
Task Mover
a year ago by Mariia Nebesnaia
A plugin for obsidian to move unfinished tasks to the daily note automatically
Organized daily notes
a year ago by duchangkim
Automatically organizes your daily notes into customizable folder structures for better organization and easier navigation.
Daily Summary
2 years ago by Luke
Current File Tags
a year ago by Trung Tran
WhatsApp backup importer
a year ago by Luigi Cerone
Obsidian plugin that allows you to import exported WhatsApp chat archives (in .zip format) into your vault.
Kikijiki Habit Tracker
a year ago by KIKIJIKI
Kikijiki Habit Tracker Plugin for Obsidian
Check and Delete
2 years ago by Danitiate
An Obsidian plugin that allows you to quickly clean up temporary list-items with the press of a button
Runsh
a year ago by Ddone
A simple plugin that allows to run shell commands from obsidian.
BlazeJump
2 years ago by henryco
Plugin for Obsidian that makes text navigation blazingly fast.
Tab Group Arrangement
a year ago by situ2001
Arrange the tab groups of Obsidian in a more flexible way
Instant Above Divider
2 years ago by SedationH
Outline to task list
2 years ago by alexandrerbb
A simple Obsidian plugin to convert a note's outline to a task list
Auto Close Tags
a year ago by k0src
Obsidian MD plugin to auto-close HTML tags.
Private Mode
a year ago by markusmo3
Abbrlink
2 years ago by Q78KG
Note Reviewer
2 years ago by Travis Linkey
An obsidian plugin to help review notes that have been taken
URI Converter
a year ago by wenlzhang
An Obsidian plugin to convert Obsidian URIs to Obsidian internal links.
Tag Timer
7 months ago by quantavil
The Tag Timer is a versatile plugin for Obsidian that allows you to seamlessly track the time you spend on specific tasks or sections within your notes.
Nav Weight
2 years ago by shu307
A simple plugin designed to sort files in navigation based on markdown frontmatter (also known as metadata) for Obsidian.
Vault Review
2 years ago by Alexander
This plugin allows you to create a snapshot of your vault and randomly review files from it 1-by-1.
Close Window When Empty
2 years ago by Taylor Jadin
Bottom to Top
2 years ago by Henry Gustafson
Task Director
2 years ago by Cybertramp
A plugin that allows you to easily manage tasks in bulk.
Previous Daily Note
a year ago by Marcos Talau
Plugin for Obsidian that opens the previous daily note
SafeLearn Formatter
10 months ago by UnterrainerInformatik
A community plugin for Obsidian, that offers visual aids for the SafeLearn-specific tags.