Hoarder Sync

by Jordan Hofker
5
4
3
2
1
Score: 53/100

Description

Category: 3rd Party Integrations

The Hoarder Sync plugin integrates Hoarder bookmarks with Obsidian by creating markdown notes for each bookmark in a specified folder. It offers automated synchronization at customizable intervals, ensuring that bookmarks are always up-to-date. Users can configure the sync folder, API settings, and additional options like excluding archived or non-favorited bookmarks. The plugin also supports updating existing notes when bookmarks are modified. With seamless integration, this tool simplifies the process of organizing and managing bookmarks within Obsidian, enhancing productivity and knowledge management.

Reviews

No reviews yet.

Stats

134
stars
3,196
downloads
12
forks
477
days
5
days
5
days
17
total PRs
2
open PRs
5
closed PRs
10
merged PRs
27
total issues
3
open issues
24
closed issues
27
commits

Latest Version

5 days ago

Changelog

Summary

  • Custom note templates — full Eta template engine support for customizing bookmark note layout (frontmatter fields, body sections, ordering). Default template is a drop-in replacement for the previous hard-coded formatter (zero breaking changes).
  • CodeMirror 6 template editor — syntax-highlighted template editor in settings using Obsidian's already-bundled CM6 (zero bundle overhead). Highlights Eta tags, YAML keys, and Markdown headings.
  • Semantic sync comparison — file rewrites no longer trigger on format-only changes (whitespace, field reordering). Frontmatter is parsed and compared key-by-key; mtime is only updated when content actually differs. Closes #19.
  • Correct attachment extensions — asset file extensions are now resolved from the HTTP Content-Type header (priority), then asset label, then URL. Per-type download toggles for banners, screenshots, PDF archives, and full-page archives. Closes #36.
  • Robust note extraction — 3-tier fallback for bi-directional note sync: comment-delimited block () → ## Notes section → frontmatter note field. Custom templates can use it.noteBlock for template-independent note editing. Partially addresses #22.
  • content_html template variable — crawled HTML content exposed as it.content_html in templates; only fetched from the API when the active template references the variable.
  • HTML sanitization — content_html strips scripts, iframes, event handlers, and javascript: URLs before exposure to templates.
  • Settings panel cleanup — fixed indented section headers and per-theme bordered setting cards; scoped all plugin CSS to .hoarder-settings.
  • @dylan-park contributed a great fix to avoid constantly moving and renaming archived bookmarks in #40

Breaking changes

None for default users. The default template reproduces the previous formatter output character-for-character.

Users who have already added a ## Notes section above other sections in a custom layout: the ## Notes extractor now strips trailing footer links rather than truncating at any [-prefixed line, which may change note boundaries in edge cases.


New in this release: Custom Templates

Getting started

In plugin settings, scroll to Note Template, toggle on Use custom template, and the editor will appear pre-populated with the default template.

Templates use Eta syntax (a lightweight EJS variant). All variables are accessed via it.*.


Bi-directional note sync

If you use Sync notes back to Karakeep, your template must support note extraction. There are two ways:

Option A — it.noteBlock (recommended for custom templates)

Place <%= it.noteBlock %> anywhere in your template body. This wraps the note in HTML comment delimiters that the plugin can reliably find regardless of surrounding structure:

Your note text here

Option B — ## Notes section (default template)

The default template uses a ## Notes heading. If you keep this section, the plugin will extract notes from it. The heading must appear in the template, and the note must be followed only by footer links.

Either way, the frontmatter must also include: original_note: <%= it.yaml.note %>

The plugin uses this field to detect whether your local edits differ from Karakeep before deciding to push changes back.


Warnings

The editor validates your template as you type. Warnings (not errors) are shown for:

  • Missing YAML frontmatter
  • Missing bookmark_id in frontmatter
  • Missing original_note (breaks note sync)
  • Missing ## Notes section (only if it.noteBlock is also absent)

If the template has a runtime error during sync, the plugin falls back to the default template and logs an error to the console.


Reset to default

Click Reset to Default to restore the original template at any time.


Syntax

Syntax Purpose
<%= it.title %> Output a value
<% if (it.summary) { %>...<% } %> Conditional block
<% it.tags.forEach(function(tag) { %>...<% }) %> Loop

Available variables

Bookmark fields

Variable Type Description
it.bookmark_id string Karakeep bookmark ID
it.title string Resolved title
it.url string | null Source URL
it.description string | null Page description or text content
it.created_at string ISO 8601 creation date
it.modified_at string | null ISO 8601 modification date
it.note string Your note text
it.noteBlock string Note wrapped in comment delimiters (see below)
it.summary string | null AI-generated summary
it.archived boolean Whether the bookmark is archived
it.favourited boolean Whether the bookmark is favourited
it.content_type string "link", "text", or "asset"
it.content_html string | null Full crawled HTML (sanitized)
it.tags string[] Sanitized tag names
it.hoarder_url string Link to bookmark in Karakeep
it.visit_link string | null Escaped source URL (null for assets)
it.sync_highlights boolean Whether highlight sync is enabled

Pre-escaped YAML values

Use these inside frontmatter — they handle quoting and special characters automatically.

Variable Description
it.yaml.url URL, safe for YAML
it.yaml.title Title, safe for YAML
it.yaml.note Note, safe for YAML
it.yaml.summary Summary, safe for YAML

Assets

Variable Type Description
it.assets.content string Inline embed(s) for attachments
it.assets.image string | undefined Wikilink to image file
it.assets.banner string | undefined Wikilink to banner image
it.assets.screenshot string | undefined Wikilink to screenshot
it.assets.full_page_archive string | undefined Wikilink to HTML archive
it.assets.pdf_archive string | undefined Wikilink to PDF
it.assets.video string | undefined Wikilink to video
it.assets.additional string[] | undefined Wikilinks to other files

Highlights

it.highlights is an array sorted by position in the source. Each item has:

Field Description
h.text Highlighted text
h.color Highlight color (e.g. "yellow")
h.note Annotation on the highlight
h.date Formatted date (e.g. "January 15, 2024")
h.created_at ISO 8601 date
h.id Highlight ID

Helper functions

Function Description
it.escapeYaml(str) Escape a string for use in YAML
it.escapeMarkdownPath(str) Escape a path for use in a Markdown link
it.formatDate(iso) Format an ISO date as "Month DD, YYYY"

README file from

Github

Hoarder Karakeep Plugin for Obsidian

This plugin syncs your Karakeep bookmarks with Obsidian, creating markdown notes for each bookmark in a designated folder.

Features

  • Automatically syncs bookmarks from Karakeep every hour (configurable)
  • Creates markdown files for each bookmark with metadata
  • Configurable sync folder and API settings
  • Updates existing bookmarks if they've changed

Installation

  1. Download the latest release from the releases page
  2. Extract the zip file in your Obsidian vault's .obsidian/plugins/ directory
  3. Enable the plugin in Obsidian's settings

Configuration

  1. Open Obsidian Settings
  2. Navigate to "Hoarder Sync" under "Community Plugins"
  3. Enter your Karakeep API key
  4. (Optional) Modify the sync interval and folder settings

Karakeep Configuration

Ensure your CORS policy is set to allow requests from your Obsidian instance. In Traefik, add the following as a middleware:

    obsidiancors:
      headers:
        accessControlAllowHeaders: "Authorization, Content-Type, Origin"
        accessControlAllowMethods: "GET, PATCH, POST, PUT, DELETE, OPTIONS"
        accessControlAllowCredentials: "true"
        accessControlAllowOriginList:
          - app://obsidian.md
          - capacitor://localhost
          - http://localhost

Settings

  • Api key: Your Karakeep API key (required)
  • Api endpoint: The Karakeep API endpoint (default: https://api.karakeep.app/api/v1)
  • Sync folder: The folder where bookmark notes will be created (default: "Hoarder")
  • Attachments folder: The folder where bookmark images will be saved (default: "Hoarder/attachments")
  • Sync interval: How often to sync in minutes (default: 60)
  • Update existing files: Whether to update or skip existing bookmark files (default: false)
  • Exclude archived: Exclude archived bookmarks from sync (default: true)
  • Only favorites: Only sync favorited bookmarks (default: false)
  • Sync notes to Karakeep: Whether to sync notes back to Karakeep (default: true)
  • Excluded tags: Bookmarks with these tags will not be synced (comma-separated), unless favorited (default: empty)
  • Sync deletions: Automatically handle bookmarks that are deleted in Karakeep (default: false)
  • Deletion action: What to do with local files when bookmarks are deleted in Karakeep - options: "Delete file", "Move to archive folder", or "Add deletion tag" (default: "Delete file")
  • Archive folder: Folder to move deleted bookmarks to when using "Move to archive folder" action (default: "Archive")
  • Deletion tag: Tag to add to files when bookmarks are deleted and using "Add deletion tag" action (default: "deleted")
  • Handle archived bookmarks: Separately handle bookmarks that are archived (not deleted) in Karakeep (default: false)
  • Archived bookmark action: What to do with local files when bookmarks are archived in Karakeep - options: "Do nothing", "Delete file", "Move to archive folder", or "Add archived tag" (default: "Delete file")
  • Archived bookmark folder: Folder to move archived bookmarks to when using "Move to archive folder" action (default: "Archive")
  • Archived bookmark tag: Tag to add to files when bookmarks are archived and using "Add archived tag" action (default: "archived")

Deletion and Archive Sync

The plugin now properly distinguishes between deleted and archived bookmarks in Karakeep:

Deleted Bookmarks

When "Sync deletions" is enabled, the plugin detects bookmarks that have been completely deleted from Karakeep and handles them according to your "Deletion action" setting:

  1. Delete file: Permanently removes the markdown file from your vault
  2. Move to archive folder: Moves the file to a specified archive folder (useful for keeping a backup)
  3. Add deletion tag: Adds a tag to the file's frontmatter to mark it as deleted (useful for manual review)

Archived Bookmarks

When "Handle archived bookmarks" is enabled, the plugin separately handles bookmarks that are archived (but not deleted) in Karakeep:

  1. Do nothing: Leaves the file unchanged (useful if you want to keep archived bookmarks in Obsidian)
  2. Delete file: Removes the file from your vault
  3. Move to archive folder: Moves the file to a specified archive folder
  4. Add archived tag: Adds a tag to mark the file as archived

This gives you fine-grained control over how your Obsidian vault reflects the state of your Karakeep bookmarks.

Development

  1. Clone this repository
  2. Install dependencies with npm install
  3. Build the plugin with npm run build
  4. Copy main.js and manifest.json to your vault's plugin directory

License

MIT

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Remotely Save
4 years ago by fyears
Sync notes between local and cloud with smart conflict: S3 (Amazon S3/Cloudflare R2/Backblaze B2/...), Dropbox, webdav (NextCloud/InfiniCLOUD/Synology/...), OneDrive, Google Drive (GDrive), Box, pCloud, Yandex Disk, Koofr, Azure Blob Storage.
Better Export PDF
2 years ago by l1xnan
Obsidian PDF export enhancement plugin
Relay
2 years ago by System 3
Multiplayer Mode for Obsidian
Todoist Sync
6 years ago by jamiebrynes7
Materialize Todoist tasks in Obsidian notes
Weread Plugin
4 years ago by hank zhao
Obsidian Weread Plugin is a plugin to sync Weread(微信读书) hightlights and annotations into your Obsidian Vault.
Google Drive Sync
a year ago by Richard Xiong
A plugin to make Obsidian work in Google Drive to enable access to iOS.
Timeline
5 years ago by George Butco
Obisdian.md plugin for creating timelines
Nutstore Sync
5 months ago by nutstore-dev
Filename Heading Sync
5 years ago by dvcrn
Obisdian.md plugin to keep the filename and the first header of the file in sync
Collapse All
5 years ago by Nathonius
Syncthing Integration
3 years ago by LBF38
Obsidian plugin for Syncthing integration
GitHub Sync
2 years ago by Kevin Chin
Sync Obsidian vault to personal GitHub
Douban
4 years ago by Wanxp
an obsidian plugin that can pull data from douban to your markdown file
Show Current File Path
5 years ago by Ravi Mashru
Obsidian plugin to show the file path of the current file in the status bar
Discord Rich Presence
6 years ago by Luke Leppan
Update your Discord Status to show your friends what you are working on in Obsidian. With Discord Rich Presence.
TickTickSync
2 years ago by thesamim
Search on Internet
5 years ago by Emile
Add context menu items in Obsidian to search the internet.
Workbench
6 years ago by ryanjamurphy
A plugin to help you collect working materials.
Taskbone
5 years ago by Dominik Schlund
Obsidian OCR plugin - extract text from images
Regex Pipeline
5 years ago by No3371
An Obsidian plugin that allows users to setup custom regex rules to automatically format notes.
Mxmind Mindmap
2 years ago by mxmind
mxmind for obsidian plugin
Lineage
2 years ago by ycnmhd
Gingko-like interface in obsidian
Hide Sidebars on Window Resize
5 years ago by NomarCub, Michael Hanson
A simple Obsidian plugin to hide the sidebars when the window gets narrow.
Prompt ChatGPT
2 years ago by Coduhuey
Audio Player
3 years ago by noonesimg
audio player plugin with bookmarks for Obsidian.md
WuCai highlights Official
3 years ago by 希果壳五彩
WuCai highlights Official, for Sync highlights into your obsidian notes
Discordian Theme
5 years ago by @radekkozak
Discordian plugin for tweaking Discordian theme
Markdown Furigana
5 years ago by Steven Kraft
Simple Markdown to Furigana Rendering Plugin for Obsidian
Peerdraft
2 years ago by Peerdraft
Collaboration for Obsidian – Sync, Share, and Edit anywhere
Sync Graph Settings
3 years ago by Xallt
This is a plugin for syncing graph settings (Color Groups and Search Filters) to Local Graphs
Settings profiles
2 years ago by 4Source
This is a plugin for Obsidian (https://obsidian.md). Allows you to create various global settings profiles. You can sync them between different vaults. To keep all your settings in sync, you'll never have to manually adjust them again for every vault you have or create in the future.
Readwise Mirror
5 years ago by jsonmartin
Share to NotionNext
3 years ago by EasyChris, jxpeng98
Share obsidian markdown file to any Notion database and generate notion share link 同步obsdian文件到任意Notion数据库。
Electron Window Tweaker
5 years ago by mgmeyers
AI Tagger
2 years ago by Luca Grippa
Simplify tagging in Obsidian. Instantly analyze and tag your document with one click for efficient note organization.
Youglish
5 years ago by Noureddine Haouari
Use YouTube to improve your pronunciation. YouGlish plugin gives you fast, unbiased answers about how words is spoken by real people and in context.
Dangerzone Writing
5 years ago by Alexis Rondeau
A plugin that forces you to write for X seconds. If you pause for more than 5 seconds, everything you've written in this note is DELETED.
PF2e Statblocks
2 years ago by Tyler Pixley
Allows Obsidian to render Pathfinder 2e statblocks cleanly, using only Markdown-based syntax.
GitHub Gitless Sync
a year ago by Silvano Cerza
Sync a GitHub repository with vaults on different platforms without requiring git installation
Add links to current note
6 years ago by MrJackphil
This plugin adds a command which allows to add a link to the current note at the bottom of selected notes
Awesome Reader
3 years ago by AwesomeDog
Make Obsidian a proper Reader.
Footlinks
5 years ago by Daha
Obsidian plugin that extracts urls from the main text to footer, offering a better reading/editing experience.
Voicenotes Sync
2 years ago by Andrew Lombardi
Official Obsidian plugin that syncs your notes from VoiceNotes.com into your vault
Antidote Grammar Checker Integration
3 years ago by Heziode
An Obsidian integration of Antidote, a powerful grammar checker
Prominent Bookmarked Files
5 years ago by Jeremy Valentine
Prominently display starred files in Obsidian.md
Hotkeys for Bookmarks
5 years ago by Vinzent
Ego Rock
2 years ago by Ashton Eby
An obsidian plugin that implements a basic taskwarrior UI for listing and modifying tasks.
TickTick
3 years ago by Viduy Cheung
Readwise Community
5 years ago by renehernandez
Sync Readwise highlights into your obsidian vault
Canvas Mindmap Helper
2 years ago by Tim Smart
Nexus AI Chat Importer
2 years ago by Superkikim
Cubox
a year ago by delphi-2015
Cubox Official Obsidian Plugin
Instapaper
2 years ago by Instapaper
Official Instapaper plugin for Obsidian
Title index
5 years ago by renmu123
markdown_index is an extension that can add serial numbers to your markdown title.
S3 Image Uploader
3 years ago by jvsteiner
This project implements an image uploader, similar to others offered by the community, with one important difference: you can provide your own s3 based storage, instead of relying on a third party service, such as imgur.
Link indexer
5 years ago by Yuliya Bagriy
Another Sticky Headings
2 years ago by Zhou Hua
Augmented Canvas
2 years ago by Léopold Szabatura
Supercharge your Obsidian canvas experience with AI features.
Floccus Bookmarks to Markdown
3 years ago by mddevils
Notes dater
3 years ago by Paul Treanor
Adds created_on and updated_on dates of the active note to status bar
Sync Vault CE
a year ago by Camus Qiu
The missing bridge between your 10+ TB cloud drive and your AI brain.
Adjacency Matrix Maker
5 years ago by SkepticMystic
Creative an interactive adjacency matrix of your Obsidian vault
Yesterday
2 years ago by Dominik Mayer
Obsidian plugin providing Yesterday journaling support
JavaScript Init
5 years ago by ryanpcmcquen
Run custom JavaScript in Obsidian.
oblogger
3 years ago by loftTech
tag explorer and frontmatter logger plugin for obsidian
Open cards in imdone.
5 years ago by saxmanjes
Open cards in imdone from obsidian
Quadro
2 years ago by Chris Grieser (aka pseudometa)
Obsidian Plugin for social-scientific Qualitative Data Analysis (QDA). An open alternative to MAXQDA and atlas.ti, using Markdown to store data and research codes.
BookFusion
2 years ago by BookFusion
BookFusion Obsidian Plugin
Notes Sync Share
3 years ago by Alt-er
Sync and share (publish) your notes in your own private service.
Tressel Sync for Obsidian
4 years ago by Tressel
Official Tressel plugin to export various content from the Internet (like Twitter, Reddit, Kindle and more) into Obsidian
Text Wrapper
3 years ago by smx0
Plugin for Obsidian
SamePage
3 years ago by SamePage
Mochi Cards Exporter
5 years ago by kalbetre
Mochi Cards Exporter Plugin for Obsidian
Awesome Flashcard
4 years ago by AwesomeDog
Handy Anki integration for Obsidian.
Image to text OCR
2 years ago by Dario Baumberger
Convert a image in your note to text.
KOReader Sync
4 years ago by Federico "Edo" Granata
Obsidian.md plugin to sync highlights/notes from koreader
Brainframe
3 years ago by pedersen
InlineCodeHighlight
3 years ago by Dimava
AnkiSync+
3 years ago by RochaG0
Metadata Icon
2 years ago by Benature
change metadata entry icon
Bookmarks Caller
2 years ago by namikaze-40p
This is an Obsidian plugin which can easily open bookmarks.
Plugin Reloader
2 years ago by Benature
manual reload plugins
Pinboard Sync
4 years ago by Mathew Spolin
Obsidian plugin to sync Pinboard.in links to Daily Notes
Invio
3 years ago by frontend-engineering
Publish obsidian docs online
simple-sketch
2 years ago by Yoh
an Obsidian plugin to create minimal sketches
LINE Notes Sync
a year ago by onikun94
Julian Date
5 years ago by thek3nger
Plugin for Obsidian to add the current Julian Date for astronomical observations
Vim Multibyte Char Search
4 years ago by anselmwang
Search multibyte characters by the corresponding input method encoding. For example, for Chinese, search "用来" by "yl"
Strava Sync
2 years ago by Howard Wilson
Sync Strava activities to your Obsidian vault
Vika Sync
4 years ago by romantic-black
Askify Sync
3 years ago by Kishlay Raj
Alias Management
2 years ago by WithMarcel
Identify duplicate notes based on similar aliases and filenames in Obsidian.
Movie Search
2 years ago by Gubchik123
Obsidian plugin to help you create movie notes.
Memos Sync
2 years ago by RyoJerryYu
Syncing Memos to Obsidian daily note. Fully compatible with official Daily Notes plugin, Calendar plugin and Periodic Notes plugin.
Readavocado Sync
4 years ago by Cyrus Zhang
Readavocado obsidian plugin to sync your favorite highlights.
Expiration-Date-Tracker
3 years ago by Marius Wörfel
Opsidian plugin to keep track of all expiration dates, for example, for your groceries.
Seafile
2 years ago by conql
Update Time
2 years ago by Sébastien Dubois
Obsidian plugin that updates front matter to include creation and last update times
KeepSidian
2 years ago by lc0rp
Filtered Opener
2 years ago by Roman Kubiv
Sets of notes defined by filters to open notes.
Markdown Media Card
2 years ago by Zhou Hua
Track-a-Lot
2 years ago by Iulian Onofrei
This is a tracker plugin for Obsidian
Hugo codeblock highlight
2 years ago by aarol
Highlights lines in code blocks using Hugo's hl_lines syntax
Confluence Sync
2 years ago by Prateek Grover
Obsidian plugin for obsidian confluence sync
Auto Definition Link
2 years ago by Nolan Carpenter
This is a plugin for Obsidian to automatically create links to blocks in your vault
HackMD Sync
a year ago by thor kampefner
obsidian extension to push and pull notes from hackmd conveniently
Checkbox Sync
a year ago by Grol
Keep parent/child checkboxes in sync automatically within your Obsidian task lists.
PARA Workflower
2 years ago by KevTheDevX
Helpful commands for starting and working in your vault with the PARA method.
Gitlab Wiki Exporter
2 years ago by Josef Rabmer
Jira Issue Manager
a year ago by Alamion
Obisdian plugin to sync tasks between Obsidian and Jira
Web viewer Bookmarks
7 months ago by Stefan Danzl
Obsidian Plugin to create Bookmarks for internal Web Viewer
Unearthed (Kindle Sync)
a year ago by CheersCal
Cloud Storage
2 years ago by Jiajun Ma
Obsidian Cloud Storage is a powerful and user-friendly plugin designed to seamlessly integrate cloud storage capabilities into your Obsidian workflow. This plugin allows you to effortlessly upload your attachments to the cloud, freeing up local storage space and enabling easy sharing and access across all your devices.
Anki Integration
a year ago by Noah Boos AKA Rift
Create flashcards from your notes with a seamless interface, structuring them with metadata and syncing effortlessly via AnkiConnect.
Google Contacts
a year ago by aleksejs1
Obsidian plugin for sync Google Contacts with obsidian notes
MrDoc
6 months ago by zmister
An Obsidian plugin for MrDoc that enables two-way synchronization between local Obsidian documents and MrDoc.一个 Obsidian 的 MrDoc 插件,用于 Obsidian 本地文档与 MrDoc 的双向同步
Glasp
a year ago by Glasp
Obsidian plugin to import highlights and notes from Glasp
Markwhen File Sync
a year ago by rouvenjahnke
Synchronize properties from your Obsidian notes with a Markwhen timeline file.
Hash Pasted Image
2 years ago by Minh Vương
Auto rename pasted images added to the vault via hash algorithm SHA-512
Canvas LMS Task Importer
2 years ago by jordaeday
Imports assignments from Canvas LMS as tasks in Obsidian
Minote Sync
a year ago by Emac Shen
Minote Sync is a Obsidian plugin to sync Minote(小米笔记) into your Vault.
Limitless Lifelogs
a year ago by Maclean Dunkin
Sync your Limitless AI lifelog entries directly into Obsidian markdown files.
Cicada Synchronizer
2 years ago by Adapole, Adapole, Mahyar Mirrashed
Hardcover
3 months ago by aliceinwaterdeep
Orion Publish
2 years ago by Sean Collings
Markdown Hijacker
a year ago by Yongmini
Beyond the Vault. One hub for every Markdown, everywhere
Yandex Wiki Integration
10 months ago by Pavel Sokolov
Sync config folder to common folder
2 years ago by codeonquer
Github Issues
10 months ago by LonoxX
An Obsidian plugin that integrates with GitHub to track issues and pull requests directly in your vault.
Immich
2 years ago by Talal Abou Haiba
AnySocket Sync
2 years ago by Andrei Vaduva
Securely Synchronize your Vault on a self-hosted server
Vikunja Sync
2 years ago by Peter Heiss
Manage your tasks in vikunja.
WikiDocs
a year ago by pahkey
Tokenz
2 years ago by Ferenc Moricz
Use any kind of short codes in Obsidian! Comes with a map for smileys (:), ;), ...) and one for emojis (:smile:, :wink:, ...).
Readeck Importer
a year ago by Makebit
Import bookmarks from Readeck to Obsidian
VaultSync
a year ago by Justin Bird
Obsidian plugin to link your vault to a cloud storage provider.
Tencent COS for Imgur
a year ago by bobostudio
🔥 Obsidian 腾讯云 COS 图床插件
Memos AI Sync
a year ago by leoleelxh
obsidian-memos-sync-plugin,将 Memos 内容同步到 Obsidian 的插件,提供无缝集成体验。
Browser History
a year ago by noy4
Sync your browser history to notes.
BookXNote Sync
2 years ago by CodeListening
将bookxnote中的笔记同步到obsidian指定的文件夹中
Sync Cnblog
a year ago by zhanglei
同步文章到博客园
ExMemo Client
2 years ago by Yan.Xie
exmemo obsidian plugin
Feedly Annotations Sync
a year ago by Nick Felker
Download my Feedly annotations
Sync-safe file names
6 months ago by j-maas
Ensure your Obsidian files can always be synced across all your devices.
ImgBB Uploader
2 years ago by Jordan Handy
An image uploader to imgBB for Obsidian
BetaX NAS Sync
a year ago by Skye
Obsidian NAS Sync
Sync to Hugo
a year ago by Cray Huang
Sync the selected notes from Obsidian to Hugo
GitHub Tracker
a year ago by schaier-io
Suggest Notes
2 years ago by Doggy-Footprint
InfoFlow
a year ago by RockieStar Inc.
Obsidian plugin for InfoFlow.app - This plugin integrates InfoFlow with Obsidian, allowing you to sync your saved articles, web pages, notes, and highlights directly into your Obsidian vault.
KOI Sync
a year ago by Luke Miller
DocBase (Unofficial)
2 years ago by yurikuvanov
Unofficial DocBase plugin for Obsidian
Clojure Plugin Host
a year ago by Vladimir "farcaller" Pouzanov
A Clojure plugin host, allowing the creation of simple Clojure-based plugins right inside Obsidian
Jade Publisher
a year ago by Lucas Ji
This is a simple plugin to help publish your Obsidian vault to a public website(build with Jade).