Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Themes
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian
GitHub

GitHub Updater

Real-Fruit-SnacksReal-Fruit-Snacks123 downloads

Download and install unofficial plugins directly from GitHub.

Add to Obsidian
GitHub Updater screenshot
  • Overview
  • Scorecard
  • Updates9
GitHub Updater

Install, track, and update Obsidian plugins straight from their GitHub repositories — no manual downloads, no leaving the app.

Documentation · Releases · Report an issue


Overview

Plenty of useful Obsidian plugins never make it into the community store — they live only as GitHub releases. Keeping them installed and current means downloading main.js and manifest.json by hand, dropping the files into .obsidian/plugins/, and remembering to check back for new versions.

GitHub Updater does that work for you. Point it at a repository (username/repo or a full URL) and it installs the plugin from the latest GitHub release, tracks it, and tells you when a newer version ships. A built-in vault scanner also finds unofficial plugins you already have installed and starts tracking them automatically.

Features

  • Install from a repository — enter username/repo (or paste the GitHub URL) in a modal, opened from the ribbon icon or the command palette, and the plugin is downloaded and installed from its latest release.
  • Vault scanner — compares your installed plugins against the official community plugin list, flags the unofficial ones, and guesses their GitHub repository so tracking starts with one click.
  • Update checker — fetches each tracked repository's latest release and compares versions semantically, so 1.10.0 correctly beats 1.9.2.
  • Raw-repository fallback — if a release has no main.js / manifest.json assets attached, the files are fetched from the tagged source tree instead, so plugins install even when the developer forgot to attach binaries.
  • Update all — one button installs every available tracked update in sequence.
  • Release notes viewer — read a release's changelog, rendered as Markdown in a native Obsidian modal, before deciding to update.
  • Ignore a version — skip a specific update without losing tracking for future releases.
  • Background checks — tracked repositories are checked shortly after Obsidian starts, with a notice when updates are found; a manual Check Now button and a "last checked" timestamp live in settings.
  • Desktop and mobile — no desktop-only APIs; everything goes through Obsidian's own networking and vault adapters.

Installation

Community plugins (recommended)

  1. Open Settings → Community plugins → Browse.
  2. Search for GitHub Updater, install, and enable it.

BRAT (latest pre-release)

Install BRAT, then add Real-Fruit-Snacks/obsidian-github-updater as a beta plugin.

Manual

  1. Download main.js and manifest.json from the latest release.
  2. Create the folder <your-vault>/.obsidian/plugins/github-updater/ and place both files inside.
  3. Reload Obsidian and enable GitHub Updater under Settings → Community plugins.

Getting started

  1. Click the GitHub ribbon icon (or run Install plugin from GitHub from the command palette) and enter a repository to install and track it.
  2. Open Settings → GitHub Updater and click Scan Vault to auto-detect unofficial plugins you already have installed.
  3. Manage everything from the tracked list: check status, read release notes, install updates, ignore a version, or remove a repository.

Commands

Command Description
Install plugin from GitHub Open the install modal and add a repository

How an update check works

  1. The latest release is fetched from api.github.com/repos/<user>/<repo>/releases/latest.
  2. manifest.json is read from the release assets — or, if missing, from the repository's tagged source tree.
  3. The remote version is compared against the manifest of the locally installed plugin.
  4. The result shows in settings as up to date, update available, or not installed, with release notes one click away.

The same asset-or-raw-fallback logic applies to main.js and styles.css when installing, so repositories without attached release binaries still work.

Architecture

obsidian-github-updater/
├── manifest.json                  Plugin metadata
├── versions.json                  Plugin version → minimum Obsidian version map
├── esbuild.config.mjs             Build configuration
└── src/
    ├── main.ts                    Plugin entry, settings persistence, startup check
    ├── checker.ts                 Release lookup and semantic version comparison
    ├── installer.ts               Release/raw download and vault installation
    ├── GithubInstallModal.ts      Install-from-repository modal
    ├── ScanModal.ts               Vault scanner for unofficial plugins
    ├── ReleaseNotesModal.ts       Markdown release-notes viewer
    └── GithubUpdaterSettingTab.ts Settings tab and tracked-repository list

Development

git clone https://github.com/Real-Fruit-Snacks/obsidian-github-updater.git
cd obsidian-github-updater
npm install
npm run dev     # watch build
npm run build   # production build

Copy (or symlink) the folder into a test vault's .obsidian/plugins/ directory and reload Obsidian to try changes.

Contributing

Issues and pull requests are welcome. See CONTRIBUTING.md for guidelines and CODE_OF_CONDUCT.md for community standards.

License

MIT © Real-Fruit-Snacks

HealthExcellent
ReviewSatisfactory
About
Install, track, and update Obsidian plugins directly from GitHub repositories. Scan the vault for unofficial plugins, fetch release assets or raw tagged files when needed, display release notes, and apply updates individually or in bulk.
IntegrationsImport
Details
Current version
1.3.2
Last updated
Last week
Created
Last month
Updates
9 releases
Downloads
123
Compatible with
Obsidian 1.2.3+
Platforms
Desktop, Mobile
License
MIT
Report bugRequest featureReport plugin
Author
Real-Fruit-SnacksReal-Fruit-Snacksreal-fruit-snacks
GitHubreal-fruit-snacks
  1. Community
  2. Plugins
  3. Integrations
  4. GitHub Updater

Related plugins

Zotero Integration

Insert and import citations, bibliographies, notes, and PDF annotations from Zotero.

Readwise Official

Sync highlights from Readwise to your vault.

Snipd Official

Sync Snipd podcast highlights to your vault with transcript, notes, AI summaries and metadata.

Telegram Sync

Transfer messages and files from Telegram to Obsidian.

Make It Rain

Pull Raindrop.io bookmarks, highlights, and attachments into Markdown notes with rich metadata, smart folder structures, and native file support.

Plaud Sync

Sync Plaud voice recordings into Markdown notes with transcripts, AI summaries, and highlights.

Granola Sync

Sync Granola notes to your vault.

Importer

Convert your data to Markdown files you can use in Obsidian. Works with Apple Notes, OneNote, Evernote, Notion, Google Keep, and many other formats.

BRAT

Easily install a beta version of a plugin for testing.

Local REST API with MCP

Unlock your automation needs by interacting with your notes over a secure REST API.