Notes Sync Share

by Alt-er
5
4
3
2
1
Score: 54/100

Description

Category: Collaboration & Sharing

The Notes Sync Share plugin enables users to synchronize and share their Obsidian notes through a self-hosted service, ensuring privacy and full control over their data. It supports seamless synchronization across devices and allows selective sharing of notes for collaboration or publishing. Users can configure the plugin to connect with their private server and customize the synchronization and sharing options. The plugin also provides flexibility to use its sync and share features independently. Additional functionalities include support for remote Git synchronization and backend service deployment with Docker or source code options.

Reviews

No reviews yet.

Stats

113
stars
5,665
downloads
2
forks
967
days
316
days
924
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
23
total issues
1
open issues
22
closed issues
2
commits

Latest Version

3 years ago

Changelog

Temporarily remove changing file modification time when creating file

README file from

Github

简体中文

Notes Sync Share

Notes Sync Share is an Obsidian plugin that allows you to synchronize and share (publish) your notes to your own private service. With this plugin, you can easily sync your Obsidian notes to a self-hosted service and have full control over your data.

Features

  • Sync: Seamlessly sync your Obsidian notes to your private service. Your notes will always be up to date across multiple devices.
  • Publish and Share: Easily publish and share selected notes to your private service. Share your knowledge with others or collaborate with teammates.
  • Privacy and Control: Keep your notes secure and private. Your data is stored in your own self-hosted service, giving you full control over your information.

Note: Sync and share functions can be used independently, you can use only one of them, for example: just use the share function, and sync function using other obsidian plug-ins to complete is possible.

Screenshots

Configuration

Configuration

Sync and History

SyncAndHistory

Share

Share

Getting Started

  1. Install the Notes Sync Share plugin in your Obsidian app.
  2. Deploy back-end services
  3. Configure the plugin settings with the URL and credentials of your private service.
  4. Choose the notes you want to sync or publish.
  5. Enjoy seamless synchronization and sharing of your notes.

Back-end Service Deployment

Try it out before you deploy it

Try the author's back-end service: https://share.alter.run, configure this address into your plugin.

Note: It is better to use your own deployed services for better privacy protection.

Using docker

Quick Start

To quickly start the Obsidian Sync Share Server, execute the following command:

docker run -d \
--name obsidian-sync-share-server \
-p 80:8080 \
-v "/root/obsidian-sync-share-server/user_store:/app/user_store" \
alterzz/obsidian-sync-share-server

This command will start a container in the background, mapping port 80 on the host to port 8080 in the container, and mounting the /root/obsidian-sync-share-server/user_store directory on the host to the /app/user_store directory in the container.

Configure https
docker run -d \
--name obsidian-sync-share-server \
-p 443:8080 \
-v "/root/obsidian-sync-share-server/user_store:/app/user_store" \
-v "/root/obsidian-sync-share-server/share.alter.run.jks:/app/cert.jks" \
-e server.ssl.key-store-type=JKS \
-e server.ssl.key-store=/app/cert.jks \
-e server.ssl.key-store-password=xxxx \
alterzz/obsidian-sync-share-server

This command allows you to specify additional parameters for configuring the server. Here's an explanation of each parameter:

  • -p 443:8080: Maps port 443 on the host to port 8080 in the container. Modify the host port as needed.
  • -v "/root/obsidian-sync-share-server/user_store:/app/user_store": Mounts the /root/obsidian-sync-share-server/user_store directory on the host to the /app/user_store directory in the container. Adjust the host directory path as required.
  • -v "/root/obsidian-sync-share-server/share.alter.run.jks:/app/cert.jks": Mounts the share.alter.run.jks file on the host to the /app/cert.jks file in the container. Update the host file path accordingly.
  • -e server.ssl.key-store-type=JKS: Sets the SSL key store type to JKS. Modify this if you are using a different type.
  • -e server.ssl.key-store=/app/cert.jks: Specifies the location of the SSL key store file within the container. Adjust if necessary.
  • -e server.ssl.key-store-password=xxxx: Sets the password for the SSL key store. Replace xxxx with the actual password.
Other configurations

limit memory

-e JAVA_OPTS=-Xmx256m

Modify the default branch name of git, which is master by default, The following example sets the default branch name to main

echo "[init] \n    defaultBranch = main" > ~/gitconfig_temp

docker cp ~/gitconfig_temp obsidian-sync-share-server:~/.gitconfig

Disable or allow automatic registration operations

# Creating a file named `registration_lock` and placing it in the same directory as the program will disable automatic registration.
docker exec obsidian-sync-share-server touch /app/registration_lock

# Deleting this file will allow automatic registration
docker exec obsidian-sync-share-server rm /app/registration_lock
Try to access

Use your server ip or domain name to access your service, the port is the listening port configured in docker earlier

http://{your server ip}

or

https://{your server ip}

Delete or rebuild
docker stop obsidian-sync-share-server
docker rm obsidian-sync-share-server

# rebuild
# ...

# view Log
docker logs obsidian-sync-share-server

Source Code Deployment

please visit the obsidian-sync-share-web.

please visit the obsidian-sync-share-server.

Sync to Remote Git

Configuration

Please go to the plugin configuration page and configure the following configuration.

Note: Force push is used every time you sync

  • Remote Git repository address
  • Username and AccessToken
Obtaining GitHub Access Token
  • Open the GitHub website and log in to your account.
  • Click on your profile picture in the top right corner and select "Settings".
  • In the left sidebar, choose "Developer settings".
  • In the left sidebar, select "Personal access tokens".
  • Click on "Generate new token".
  • Enter a descriptive name in the "Note" field to remember the purpose of this access token.
  • Select the desired permissions from the list (e.g., read repository, write repository, etc.).
  • Click "Generate token" at the bottom of the page.
  • Copy the generated access token.
Obtaining GitLab Access Token
  • Open the GitLab website and log in to your account.
  • Click on your profile picture in the top right corner and select "Settings".
  • In the left sidebar, choose "Access Tokens".
  • Enter a descriptive name in the "Name" field to remember the purpose of this access token.
  • In the "Scopes" section, select the desired permissions (e.g., API, repositories, etc.).
  • Click "Create personal access token" at the bottom of the page.
  • Copy the generated access token.

Frequently Asked Questions (FAQ)

1. Stuck on "Other clients are in the process of synchronization, please try later"

Q: Delete files: /app/user_store/{username}/sync_lock can be unlocked manually. The above is the path for docker deployment. If it is deployed manually, please search for the file in the directory you specified manually.

If the problem occurs again after unlocking, it means there is a problem in your synchronization process. A common situation is that when using a reverse proxy (nginx), the uploaded file size exceeds the limit when using the default configuration. There may also be other problems, you can use docker logs obsidian-sync-share-server to view the error stack. If it is convenient, you can send it to me and I will analyze the specific problem.

Q: Don't use wikilinks

Don't use wikilinks

Feedback and Contributions

If you encounter any issues, have suggestions, or would like to contribute to the development of Notes Sync Share, please visit the GitHub repository. Your feedback and contributions are highly appreciated.

License

This plugin is released under the MIT License.


Notes Sync Share is not affiliated with or endorsed by Obsidian or the Obsidian team. It is an independent plugin developed by Alt-er.

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.
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.
Tracker
5 years ago by pyrochlore
A plugin tracks occurrences and numbers in your notes
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
Cubox
a year ago by delphi-2015
Cubox Official Obsidian Plugin
Protected Note
2 years ago by Mikail Gadzhikhanov
Plugin for Obsidian
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.
Share my plugin list
2 years ago by Benature
Share the obsidian plugins that is using currently
Sticky Notes
a year ago by NoPoint
Obsidian Sticky Notes Plugin
Highlight Public Notes
5 years ago by dennis seidel
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
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.
KOReader Sync
4 years ago by Federico "Edo" Granata
Obsidian.md plugin to sync highlights/notes from koreader
ZettelGPT
3 years ago by Overraddit
Turbocharge Your Note-taking with AI Assistance
Old Note Admonitor
4 years ago by tadashi-aikawa
Just Share Please
3 years ago by Ellpeck
An Obsidian plugin that allows quickly and easily sharing individual notes online using an anonymized link
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.
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.
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
Smort
4 years ago by Smort
Obisidian plugin for Smort
Share to Cubox
3 years ago by Redwinam
Askify Sync
3 years ago by Kishlay Raj
Quickly
3 years ago by Sparsh Yadav
Quick capture to obsidian note
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
Jira Issue Manager
a year ago by Alamion
Obisdian plugin to sync tasks between Obsidian and Jira
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.
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.
Google Contacts
a year ago by aleksejs1
Obsidian plugin for sync Google Contacts with obsidian notes
Create List of Notes
2 years ago by Andrew Heekin
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
WikiDocs
a year ago by pahkey
Daily Random Note
2 years ago by Alexandre Silva
Daily Random Notes in Obsidian.
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
Sync Cnblog
2 years ago by zhanglei
同步文章到博客园
BookXNote Sync
2 years ago by CodeListening
将bookxnote中的笔记同步到obsidian指定的文件夹中
Abbrlink
2 years ago by Q78KG
Sync-safe file names
7 months ago by j-maas
Ensure your Obsidian files can always be synced across all your devices.
ExMemo Client
2 years ago by Yan.Xie
exmemo obsidian plugin
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.
Quick Notes
2 years ago by Sean McOwen
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.
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