KOReader Sync

by Federico "Edo" Granata
5
4
3
2
1
Score: 43/100

Description

Category: 3rd Party Integrations

The KOReader Sync plugin facilitates seamless synchronization of KOReader notes with an Obsidian vault, enabling readers to efficiently manage their reading highlights and annotations. It allows users to import notes from KOReader into Obsidian, complete with metadata such as title, chapter, and highlights. With customizable templates, users can format notes to suit their workflow. The plugin supports features like automatic synchronization, creation of book-specific folders, and integration with Dataview for advanced querying and organization. Users can also manage syncing preferences and track edits to prevent data loss during updates.

Reviews

No reviews yet.

Stats

120
stars
5,146
downloads
10
forks
1,595
days
134
days
1,576
days
42
total PRs
3
open PRs
0
closed PRs
39
merged PRs
36
total issues
13
open issues
23
closed issues
0
commits

Latest Version

4 years ago

Changelog

Fix a copy/paste bug

README file from

Github

Obsidian KOReader Plugin

Sync KOReader notes in your Obsidian vault. The KOReader device must be connected to the device running obsidian to let the plugin scan through it's files.

In the beginning of each note there a series of YAML data knwon as Frontmatter. Those data are mainly used by the plugin itself (you can use them as shown in dataview examples) but messing with them will cause unexpected behaviour so use the provided commands to properly interact with them.

When you're comfy reading your notes in obsidian think about how useful is this plugin to you and express your gratitude with a tweet or with a coffee :coffee:

Twitter URL

Configuration

There ara four main settings:

  • KOReader mounted path that MUST be set correctly to the path where KOReader is mounted
  • Highlights folder location that can be let as the default / (or you can create a folder and select it from the dropdown)
  • Keep in sync that define if the plugin should keep the notes in sync with KOReader importing them again (see sync)
  • Create a folder for each book if you are a fan of folders enabling this setting the new notes will be created in a subfolder named as the book itself

Danger Zone

This area contains settings that can be useful in a very few edga cases and can be dangerous in a day to day usage.

  • Enable reset of imported notes enable a one shot execution of the command Reset Sync List

View configuration

The plugin use Eta.js as template engine to create the body of the note (the same used from the plugin Templater). The default template is pretty minimal

## Title: [[<%= it.bookPath %>|<%= it.title %>]]

### by: [[<%= it.authors %>]]

### Chapter: <%= it.chapter %>

Page: <%= it.page %>

**==<%= it.highlight %>==**

<%= it.text %>

In the View settings section you can found the the option to use a custom template. If you chose to do so you must create a .md file in the vault and write your template in it (I suggest to copy the default in it as a starting point) and write the path in Template file

The template receive the following arguments:

  • bookPath: koreader/(book) How to Take Smart Notes_... {book suffix}-Sönke Ahrens
  • title: How to Take Smart Notes: One Simple Technique to Boost Writing, Learning and Thinking - for Students, Academics and Nonfiction Book Writers
  • authors: Sönke Ahrens
  • chapter: 1.1 Good Solutions are Simple – and Unexpected
  • highlight: Clance and Imes 1978; Brems et al. 1994
  • text: Clance (1978) first identified the Impostor Phenomenon in therapeutic sessions with highly successful women who attributed achievements to external factors
  • datetime: 2022-01-22 09:57:29
  • page: 19

Book view configuration

The default template is minimal but complex

# Title: <%= it.data.title %>

<progress value="<%= it.metadata.percent_finished %>" max="100"> </progress>
```dataviewjs
const title = dv.current()['koreader-sync'].metadata.managed_title
dv.pages().where(n => {
return n['koreader-sync'] && n['koreader-sync'].type == 'koreader-sync-note' && n['koreader-sync'].metadata.managed_book_title == title
}).sort(p => p['koreader-sync'].data.page).forEach(p => dv.paragraph(dv.fileLink(p.file.name, true), {style: 'test-css'}))
```

The core of this template is a js dataview embedded query. Don't mess with it if you don't know what you are doing (I don't because I barely know Dataview).

The template receive exactly the same data you can see in the frontmatter. If it's not there you can't use it but you can create an issue asking for it.

Dataview embedded

Besides a native support for Dataview (look at the example) the plugin let the user chose to automatically create a note for each book with a dataview query inside. The note is created in the same folder of the notes of the book but can be moved and renamed and Obsidian will take care of updating the links. To use this feature Dataview needs to be installed and its Enable JavaScript Queries must be enabled. The query itself will embed the single notes and a CSS will hide every h2 and h3 tags (with the default template this will hide the title, the author and the chapter).

ATTENTION: this feature require at least Obsidian v0.13.19 but there is a glitch that sometimes show only the filename of the notes instead of their contents. Try to close the note and open it again (sorry, not my fault)

Usage

Once the plugin is configured properly you can plug the device with KOReader and click on the icon with two documents and the tooltip Sync your KOReader highlights. The plugin should propmplty create a single file for each note. The plugin should take care of automatically detect when you update the text of the note itself and update the frontmatter properties accordingly.

Commands

NOTE: if a command is suppose to set a frontmatter property equal to a certain value then it will be shown only if the open note has such property with a different value.

There are five commands:

  • Sync it's the same as clicking on the plugin's icon, it's trigger the sync of the notes
  • Reset Sync List empty the list of imported notes (see Danger Zone). Always try to retrieve the deleted notes from trash before using this command because all the rightfully discarded notes will be imported again. This command will also disable itself so you have to enable in the settings again if you wish to use it again.
  • Mark this note as Edited set the frontmatter propery yet_to_be_edited to false (see Note editing)
  • Mark this note as NOT Edited set the frontmatter propery yet_to_be_edited to true (see Note editing)
  • Enable Sync for this note set the frontmatter propery keep_in_sync to true (see sync)
  • Disable Sync for this note set the frontmatter propery keep_in_sync to false (see sync)

Note editing

When you edit a note you should avoit to change the frontmatter at all. Since version 0.6.0 the plugin itself should be able detect any changes to the note and to update:

  • the yet_to_be_edited value from true to false so the plugin know that you altered something and to avoid any loss in case of sync
  • the text value to mirror your edit

If you want to discard your manual edits you can use the command Mark this note as NOT Edited and overwrite it at the next sync. If you change something beside the text itself (eg. the chapter, the title of the book, etc) you must use the Mark this note as Edited to made the plugin aware of your changes (this should not be necessary in future releases)

It's easier/safer to use the proper commands instead of manually editing the frontmatter

Sync

WARNING Sync works by deleting a note and creating it again from KOReader. Anything added or updated (in Obsidian) will be lost like tears in rain. Consider yourself warned.

The syncing process rely on two property defined in the frontmatter metadata:

  • keep_in_sync
  • yet_to_be_edited

Both needs to be true for the note to be synced.

keep_in_sync can be controlled at global level through the setting Keep in sync or in each note while yet_to_be_edited is set to true when the note is imported from KOReader and can only be manually changed in the note itself.

The default value for keep_in_sync is false so the default behaviour is that once a note is in obsidian it will never be synced again.

If you modify your notes in KOReader and want them to be synced in obsidian you have to enable the Keep in sync setting OR use the proper commands to change the keep_in_sync frontmatter of a specific note from false to true and if the yet_to_be_edited of that note is true then the note will be deleted and recreated.

Dataview examples

Thanks to the frontmatter data in each note you can use Dataview to easily query your notes

Books

```dataview
list
where koreader-sync
group by koreader-sync.data.title
```

Chapters of a specific book (with notes in them)

```dataview
list
where koreader-sync.data.title = "How to Take Smart Notes: One Simple Technique to Boost Writing, Learning and Thinking - for Students, Academics and Nonfiction Book Writers"
group by koreader-sync.data.chapter
```

Notes of a specific chapter of a specific book

```dataview
list
where koreader-sync.data.title = "How to Take Smart Notes: One Simple Technique to Boost Writing, Learning and Thinking - for Students, Academics and Nonfiction Book Writers" and koreader-sync.data.chapter = "Introduction"
```
```dataview
list without id koreader-sync.data.text
where koreader-sync.data.title = "How to Take Smart Notes: One Simple Technique to Boost Writing, Learning and Thinking - for Students, Academics and Nonfiction Book Writers"
where koreader-sync.data.text
```

List of notes yet to be edited

```dataview
list 
where koreader-sync.metadata.yet_to_be_edited
```

List of notes that should be kept in sync

```dataview
list 
where koreader-sync.metadata.keep_in_sync
```

List of notes that will be kept in sync

```dataview
list 
where koreader-sync.metadata.keep_in_sync and koreader-sync.metadata.yet_to_be_edited
```

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Remotely Save
5 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.
QuickAdd
5 years ago by Christian B. B. Houmann
QuickAdd for Obsidian
Admonition
5 years ago by Jeremy Valentine
Adds admonition block-styled content to Obsidian.md
Periodic Notes
5 years ago by Liam Cain
Create/manage your daily, weekly, and monthly notes in Obsidian
Zotero Desktop Connector
4 years ago by mgmeyers
Insert and import citations, bibliographies, notes, and PDF annotations from Zotero into Obsidian.
Tracker
5 years ago by pyrochlore
A plugin tracks occurrences and numbers in your notes
Folder notes
3 years ago by Lost Paul
Create notes within folders that can be accessed without collapsing the folder, similar to the functionality offered in Notion.
Note Refactor
6 years ago by James Lynch
Allows for text selections to be copied (refactored) into new notes and notes to be split into other notes.
Dice Roller
5 years ago by Jeremy Valentine
Inline dice rolling for Obsidian.md
File Explorer Note Count
5 years ago by Ozan Tellioglu
Obsidian Plugin for viewing the number of elements under each folder within the file explorer
Book Search
4 years ago by anpigon
Obsidian plugin that automatically creates notes by searching for books
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.
Folder Note
5 years ago by xpgo
Plugin to add description note to a folder for Obsidian.
Google Drive Sync
2 years ago by Richard Xiong
A plugin to make Obsidian work in Google Drive to enable access to iOS.
Icons
5 years ago by Camillo Visini
Add icons to your Obsidian notes – Experimental Obsidian Plugin
Auto Note Mover
4 years ago by faru
This is a plugin for Obsidian (https://obsidian.md).
Nutstore Sync
6 months ago by nutstore-dev
Multi Properties
3 years ago by fez-github
Plugin for Obsidian that allows user to add properties to multiple notes at once.
Smart Random Note
6 years ago by Eric Hall
A smart random note plugin for Obsidian
Digital Garden
4 years ago by Ole Eskild Steensen
Focus Mode
5 years ago by ryanpcmcquen
Add focus mode to Obsidian.
Filename Heading Sync
5 years ago by dvcrn
Obisdian.md plugin to keep the filename and the first header of the file in sync
PodNotes
4 years ago by Christian B. B. Houmann
PodNotes is a plugin for Obsidian that helps the user write notes on podcasts.
Bible Reference
5 years ago by tim-hub
Take Bible Study notes easily in the popular note-taking app Obsidian, with automatic verse and reference suggestions.
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
Daily Notes Editor
4 years ago by boninall
A plugin for you to edit a bunch of daily notes in one page(inline), which works similar to Roam Research's default daily note view.
Print
2 years ago by Marijn Bent
Print your notes directly from Obsidian
TickTickSync
2 years ago by thesamim
Widgets
2 years ago by Rafael Veiga
Add cool widgets to your notes or your dashboard in Obsidian
Voice
3 years ago by Chris Oguntolu
🔊 The Obsidian Voice plugin lets you listen to your written content being read aloud—mobile-friendly audiobook-like experience. 🎧
Wikipedia
5 years ago by Jonathan Miller
Grabs information from Wikipedia for a topic and brings it into Obsidian notes
Audio Notes
3 years ago by Jason Maldonis
Easily take notes on podcasts and other audio files using Obsidian Audio Notes.
Taskbone
5 years ago by Dominik Schlund
Obsidian OCR plugin - extract text from images
Slurp
2 years ago by inhumantsar
Slurps webpages and saves them as clean, uncluttered Markdown. Think Pocket, but better.
OZ Calendar
3 years ago by Ozan Tellioglu
Advanced Merger
3 years ago by Anto Keinänen
Prettier Format
5 years ago by Andrew Lisowski
Format obsidian.md notes using prettier
Card View Mode
5 years ago by PADAone
Obsidian Card View Mode Plugin
WuCai highlights Official
3 years ago by 希果壳五彩
WuCai highlights Official, for Sync highlights into your obsidian notes
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.
Custom Note Width
3 years ago by 0skater0
Set the line width for each note individually in Obsidian. Works with a slider, pill presets, YAML frontmatter and hotkeys.
Share to NotionNext
3 years ago by EasyChris, jxpeng98
Share obsidian markdown file to any Notion database and generate notion share link 同步obsdian文件到任意Notion数据库。
Readwise Mirror
5 years ago by jsonmartin
Colorful Note Borders
3 years ago by rusi
Create Note in Folder
3 years ago by Mara-Li
Set a folder in settings and get directly a command to create a note in it. Use this with QuickAdd/Button to get more pratical things :D
Merge Notes
3 years ago by fnya
Merge Notes is Plugin for Obsidian
From Template
5 years ago by mo-seph
Simple plugin to create Notes from a template, and fill in fields defined there
GitHub Gitless Sync
a year ago by Silvano Cerza
Sync a GitHub repository with vaults on different platforms without requiring git installation
Smart Rename
3 years ago by mnaoumov
Obsidian Plugin that helps to rename notes keeping previous title in existing links
Awesome Reader
3 years ago by AwesomeDog
Make Obsidian a proper Reader.
Voicenotes Sync
2 years ago by Andrew Lombardi
Official Obsidian plugin that syncs your notes from VoiceNotes.com into your vault
Sets
3 years ago by Gabriele Cannata
Ollama Chat
2 years ago by Brumik
A plugin for chatting with you obsidian notes trough local Ollama LLM instead of Chat GTP.
Easy Bake
3 years ago by mgmeyers
Compile many Obsidian notes down to one.
Apple Books - Import Highlights
2 years ago by bandantonio
⚡️Fastest Apple Books highlights importer to Obsidian 🗄️ The only one protecting your own reflections across imports 🎨 Fully customizable
Timeline View
3 years ago by b.camphart
Obsidian plugin for viewing your notes linearly based on a given property
TickTick
3 years ago by Viduy Cheung
Protected Note
2 years ago by Mikail Gadzhikhanov
Plugin for Obsidian
Cubox
a year ago by delphi-2015
Cubox Official Obsidian Plugin
Podcast Note
5 years ago by Marc Julian Schwarz
A plugin for the note taking app Obsidian that lets you add podcast meta data to your notes.
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.
2Hop Links
5 years ago by Tokuhiro Matsuno
YouTube Template
2 years ago by sundevista
📺 A plugin that would help you to fetch YouTube videos data into your vault.
Instapaper
2 years ago by Instapaper
Official Instapaper plugin for Obsidian
Enhance Copy Note
5 years ago by kzhovn
Plugin which enhances the copy command for Obsidian.
Spotify Link
3 years ago by Studio Webux
Obsidian.md Plugin to include the song or episode you're currently listening to in your note.
Sync Vault CE
a year ago by Camus Qiu
The missing bridge between your 10+ TB cloud drive and your AI brain.
Highlight Public Notes
5 years ago by dennis seidel
Sticky Notes
a year ago by NoPoint
Obsidian Sticky Notes Plugin
Live Variables
2 years ago by Hamza Ben Yazid
Define variables in your note's properties and reuse them throughout your content.
Structured
5 years ago by dobrovolsky
Note archiver
3 years ago by thenomadlad
Kindle Highlights Importer
2 years ago by MovingMillennial
Pinned Notes
2 years ago by vasilcoin002
BookFusion
2 years ago by BookFusion
BookFusion Obsidian Plugin
Air Quotes
3 years ago by Alan Grainger
Plugin for Obsidian. Search and insert quotes from a source text as you type. This is great for reading a physical book or eReader while taking notes on a separate laptop or phone.
Power Search
4 years ago by Aviral Batra
Notes Sync Share
3 years ago by Alt-er
Sync and share (publish) your notes in your own private service.
Dynbedded
4 years ago by Marcus Breiden
Embed snippets, templates and any linkable by delegating the current scope to the embedded file either by using a direct reference or as reference with date naming format relative from today.
SamePage
4 years ago by SamePage
Awesome Flashcard
4 years ago by AwesomeDog
Handy Anki integration for Obsidian.
ZettelGPT
3 years ago by Overraddit
Turbocharge Your Note-taking with AI Assistance
Old Note Admonitor
4 years ago by tadashi-aikawa
LINE Notes Sync
a year ago by onikun94
Quick note
3 years ago by James Greenhalgh MBCS
Create New note from right-clicking app icon
iCloud Contacts
2 years ago by Truls Aagaard
Obsidian plugin that imports contacts from iCloud and manages a note for each contact.
Pinboard Sync
4 years ago by Mathew Spolin
Obsidian plugin to sync Pinboard.in links to Daily Notes
Strava Sync
2 years ago by Howard Wilson
Sync Strava activities to your Obsidian vault
BibTeX Manager
2 years ago by Akop Kesheshyan
Create literature notes in Obsidian from BibTeX entries, display formatted reference lists, and instantly generate citations.
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"
New Note Content Pusher
4 years ago by Henry Gustafson
An Obsidian plugin to add (prepend or append) specified content to a note (existing or new) without opening another pane.
Zettelkasten Outliner
3 years ago by Tyler Suzuki Nelson
Source Code Note
3 years ago by Waiting
The obsidian plugin can help you organize source code note easily.
Desk
2 years ago by David Landry
A desk for obsidian
Askify Sync
3 years ago by Kishlay Raj
Quickly
3 years ago by Sparsh Yadav
Quick capture to obsidian note
Xiaohongshu Importer
a year ago by bnchiang96
An Obsidian plugin to import Xiaohongshu (小红书) notes into your vault. Extract titles, content, images, videos, and tags from share links, with customizable categories and optional local media downloads.
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.
Tolino notes Importer
3 years ago by juergenbr
Obsidian plugin to import notes from a Tolino E-Reader
Readavocado Sync
4 years ago by Cyrus Zhang
Readavocado obsidian plugin to sync your favorite highlights.
my anime list text exporter
2 years ago by XmoncocoX
a plugin who create an obsidian page for an anime with the data from my anime list.
Moulinette Search for TTRPG
2 years ago by Moulinette
Plugin for Obsidian
Note Splitter
2 years ago by Trey Wallis
Split a note into individual notes based on a delimiter
iDoRecall
3 years ago by dbhandel
iDoRecall Obsidian plugin
Asciidoctor editor
2 years ago by dzruyk
Obsidian asciidoc editor plugin
Confluence Sync
2 years ago by Prateek Grover
Obsidian plugin for obsidian confluence sync
KoReader Highlight Importer
a year ago by Tahsin Kocaman
Imports highlights and metadata from KoReader into Obsidian notes
Are.na unofficial
3 years ago by 0xroko
Unofficial Are.na plugin for Obsidian
Checkbox Sync
a year ago by Grol
Keep parent/child checkboxes in sync automatically within your Obsidian task lists.
Jira Issue Manager
a year ago by Alamion
Obisdian plugin to sync tasks between Obsidian and Jira
HackMD Sync
2 years ago by thor kampefner
obsidian extension to push and pull notes from hackmd conveniently
Current Folder Notes
2 years ago by Pamela Wang
Shows notes in the current folder, useful for writing novels
Title renamer
2 years ago by Peter Strøiman
Obsidian plugin to keep title in markdown synced with tile name
Note Companion Folder
2 years ago by Chris Verbree
A Obsidian Plugin providing a way to associate a folder to a note
Folder Periodic Notes
2 years ago by Andrew Heekin
Kinopoisk search
2 years ago by Alintor
Obsidian Kinopoisk plugin
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.
Create List of Notes
2 years ago by Andrew Heekin
Google Contacts
a year ago by aleksejs1
Obsidian plugin for sync Google Contacts with obsidian notes
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.
MrDoc
7 months ago by zmister
An Obsidian plugin for MrDoc that enables two-way synchronization between local Obsidian documents and MrDoc.一个 Obsidian 的 MrDoc 插件,用于 Obsidian 本地文档与 MrDoc 的双向同步
Auto Note Importer
a year ago by uppinote
Sync Obsidian notes bidirectionally with Airtable, SeaTable, and Supabase — multi-config, conflict resolution, computed-field aware
Glasp
a year ago by Glasp
Obsidian plugin to import highlights and notes from Glasp
Autogen
2 years ago by Aidan Tilgner
A plugin to use a language model to fill in parts of notes.
Quick File Name
2 years ago by Wapply
This Obsidian plugin generates a note with an random string as file name.
Markwhen File Sync
a year ago by rouvenjahnke
Synchronize properties from your Obsidian notes with a Markwhen timeline file.
Minote Sync
a year ago by Emac Shen
Minote Sync is a Obsidian plugin to sync Minote(小米笔记) into your Vault.
Hardcover
4 months ago by aliceinwaterdeep
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.
Limitless Lifelogs
a year ago by Maclean Dunkin
Sync your Limitless AI lifelog entries directly into Obsidian markdown files.
Markdown Hijacker
a year ago by Yongmini
Beyond the Vault. One hub for every Markdown, everywhere
Quarto Exporter
2 years ago by Andreas Varotsis
Export Obsidian notes to Quarto-compatible QMD files.
Cicada Synchronizer
2 years ago by Adapole, Adapole, Mahyar Mirrashed
Share as ZIP
2 years ago by Till Friebe
Github Issues
a year ago by LonoxX
An Obsidian plugin that integrates with GitHub to track issues and pull requests directly in your vault.
Yandex Wiki Integration
a year ago by Pavel Sokolov
Sync config folder to common folder
2 years ago by codeonquer
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.
Daily Summary
2 years ago by Luke
Vikunja Sync
2 years ago by Peter Heiss
Manage your tasks in vikunja.
AnySocket Sync
2 years ago by Andrei Vaduva
Securely Synchronize your Vault on a self-hosted server
Daily Random Note
2 years ago by Alexandre Silva
Daily Random Notes in Obsidian.
WikiDocs
a year ago by pahkey
VaultSync
a year ago by Justin Bird
Obsidian plugin to link your vault to a cloud storage provider.
Session Notes
2 years ago by tabibyte
A plugin for Obsidian to create temporary & session notes that will be deleted when session ends
Instant Above Divider
2 years ago by SedationH
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.
create folder notes with dropdown
2 years ago by Sturdy Shawn
BookXNote Sync
2 years ago by CodeListening
将bookxnote中的笔记同步到obsidian指定的文件夹中
Sync Cnblog
a year ago by zhanglei
同步文章到博客园
Abbrlink
2 years ago by Q78KG
ExMemo Client
2 years ago by Yan.Xie
exmemo obsidian plugin
Sync-safe file names
7 months ago by j-maas
Ensure your Obsidian files can always be synced across all your devices.
Feedly Annotations Sync
a year ago by Nick Felker
Download my Feedly annotations
Chat clips
a year ago by sleepingraven
Record chat in ordinary markdown list.
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.
Quick Notes
2 years ago by Sean McOwen
BetaX NAS Sync
a year ago by Skye
Obsidian NAS Sync
Sync to Hugo
2 years ago by Cray Huang
Sync the selected notes from Obsidian to Hugo
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
Arweave Uploader
2 years ago by makesimple
random-retrieval
2 years ago by Rachninomav