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
  • Join the community
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Plugin Update Tracker

swar8080swar8080157k downloads

Know when installed plugins have updates and evaluate the risk of upgrading.

Add to Obsidian
  • Overview
  • Scorecard
  • Updates22
  • Installation Link
  • Features
    • Know when installed plugins have updates
    • View a list of updates
    • Read the release notes to see what's changed
    • Install Plugin Updates
    • Evaluate the riskiness of upgrading
      • Statistics on new versions
      • Wait a few days before showing updates
      • View code changes between versions of a plugin
    • View and install new beta plugin versions
    • Ignore specific plugin updates
    • Customizing plugin appearance
  • Using the public API to check for plugin updates
    • API Privacy

Installation

Visit this URL: obsidian://show-plugin?id=obsidian-plugin-update-tracker

Features

Know when installed plugins have updates

Desktop:

This small icon is added to the status bar:

image: When 5 plugins have updates

image: When all plugins are up-to-date

Mobile/Tablet:

This ribbon action is shown when there's at least one update available:

image

View a list of updates

When updates are available, click the plugin icon to see the list:

image

Read the release notes to see what's changed

Release notes are safely rendered as markdown

image

image

Install Plugin Updates

Screen_Recording_2022-10-29_at_3_43_48_PM_AdobeExpress (1)

Evaluate the riskiness of upgrading

Statistics on new versions

Older versions with more downloads are likely more stable and secure image

Wait a few days before showing updates

image

View code changes between versions of a plugin

Clicking Code Changes will bring you to a page like https://github.com/blacksmithgu/obsidian-dataview/compare/0.5.43...0.5.46#files_bucket.

⚠️ The code in the git diff may be different than what's installed. Obsidian downloads a separate main.js file from the github release, which the author could add any code to.

Ignore specific plugin updates

Hide new plugin versions that you don't want to install from the plugin icon count and update list:

View and install new beta plugin versions

By default, new beta versions of plugins are hidden, but can be shown by changing this setting:

image

A warning will be shown for beta version updates:

image

Customizing plugin appearance

Built-in

The following built-in settings exist:

image

Custom CSS Snippets

Appearance can also be customized using obsidian CSS snippets (Go to Settings > Appearance > CSS Snippets)

The following CSS selectors exist:

  • .status-bar-item.plugin-obsidian-plugin-update-tracker: The container of the status bar plugin icon

  • .status-bar-item .plugin-update-tracker-icon--loading: Plugin icon container in the loading state (⌛)

  • .status-bar-item .plugin-update-tracker-icon--no-updates-available: Plugin icon container when no updates are available (✓)

  • .status-bar-item .plugin-update-tracker-icon--updates-available: Plugin icon container when updates are available

  • .status-bar-item .plugin-update-tracker-icon--error: Plugin icon container when there's an error checking for updates (image)

  • .plugin-update-tracker-icon-plug-icon: The plug icon (image )

  • .plugin-update-tracker-icon-chip: The status icon to the right of the plug icon

Examples

Position the icon at the end of the status bar:

.status-bar-item.plugin-obsidian-plugin-update-tracker {
 order: 101;
}

Position the icon at the beginning of the status bar:

.status-bar-item.plugin-obsidian-plugin-update-tracker {
 order: -1;
}

Using the public API to check for plugin updates

The API used to get plugin version info is free for anyone to use. This could be helpful for alerting your plugin's users about updates in a custom way.

Cacheing + AWS Lambda is used to keep costs low, avoid hitting github rate limits, and scale automatically. Currently, cached values are used for up to Math.ceil(number of requested plugins / 50) * 30 minutes and up to 400 plugins are processed. However, a large number of cache misses can still cause high latency.

Example Request:

POST https://jc5gpa3gs7o2uge6iq5mgjd53q0daomi.lambda-url.us-east-1.on.aws

{
    "currentPluginVersions": [
        {
            "obsidianPluginId": "dataview",
            "version": "0.5.44"
        },
        {
            "obsidianPluginId": "obsidian-excalidraw-plugin",
            "version": "1.7.25"
        }
    ]
}

Example Response, which contains info on the 10 latest versions of the plugin that are greater than the version requested:

[
    {
        "obsidianPluginId": "dataview",
        "pluginName": "Dataview",
        "pluginRepositoryUrl": "https://github.com/blacksmithgu/obsidian-dataview",
        "pluginRepoPath": "blacksmithgu/obsidian-dataview",
        "newVersions": [
            {
                "releaseId": 79493021,
                "versionName": "0.5.47",
                "versionNumber": "0.5.47",
                "minObsidianAppVersion": "0.13.11",
                "notes": "# 0.5.47\n\nImproves `date + duration` behavior when either the date or duration are null.\n",
                "areNotesTruncated": false,
                "downloads": 45232,
                "fileAssetIds": {
                    "manifestJson": 80616557,
                    "mainJs": 80616558
                },
                "publishedAt": "2022-10-11T06:24:26Z",
                "updatedAt": "2022-10-11T06:24:26Z"
            },
            {
                "releaseId": 76774596,
                "versionName": "0.5.46",
                "versionNumber": "0.5.46",
                "minObsidianAppVersion": "0.13.11",
                "notes": "# 0.5.46\n\n- Fix #1412: Fix bad `file.cday` and `file.ctime` comparisons due to wrong timezone being set. Ugh.\n",
                "areNotesTruncated": false,
                "downloads": 43628,
                "fileAssetIds": {
                    "manifestJson": 77407853,
                    "mainJs": 77407852
                },
                "publishedAt": "2022-09-10T00:17:38Z",
                "updatedAt": "2022-09-10T00:17:38Z"
            },
            {
                "releaseId": 76553504,
                "versionName": "0.5.45",
                "versionNumber": "0.5.45",
                "minObsidianAppVersion": "0.13.11",
                "notes": "# 0.5.45\n\n- #1400: Properly use the group by field for the group name.\n- Fix bad table highlighting in some themes.\n",
                "areNotesTruncated": false,
                "downloads": 4199,
                "fileAssetIds": {
                    "manifestJson": 77205985,
                    "mainJs": 77205984
                },
                "publishedAt": "2022-09-08T05:24:23Z",
                "updatedAt": "2022-09-08T05:24:23Z"
            }
        ]
    },
    {
        "obsidianPluginId": "obsidian-excalidraw-plugin",
        "pluginName": "Excalidraw",
        "pluginRepositoryUrl": "https://github.com/zsviczian/obsidian-excalidraw-plugin",
        "pluginRepoPath": "zsviczian/obsidian-excalidraw-plugin",
        "newVersions": [
            {
                "releaseId": 80829877,
                "versionName": "Excalidraw 1.7.26",
                "versionNumber": "1.7.26",
                "minObsidianAppVersion": "0.15.6",
                "notes": "## Fixed\r\n- Transcluded block with a parent bullet does not embed sub-bullet [#853](https://github.com/zsviczian/obsidian-excalidraw-plugin/issues/853)\r\n- Transcluded text will now exclude ^block-references at end of lines\r\n- Phantom duplicates of the drawing appear when \"zoom to fit\" results in a zoom value below 10% and there are many objects on the canvas [#850](https://github.com/zsviczian/obsidian-excalidraw-plugin/issues/850)\r\n- CTRL+Wheel will increase/decrease zoom in steps of 5% matching the behavior of the \"+\" & \"-\" zoom buttons.\r\n- Latest updates from Excalidarw.com\r\n  - Freedraw flip not scaling correctly [#5752](https://github.com/excalidraw/excalidraw/pull/5752)\r\n  - Multiple elements resizing regressions [#5586](https://github.com/excalidraw/excalidraw/pull/5586)\r\n\r\n## New - power user features\r\n- Force the embedded image to always scale to 100%. Note: this is a very niche feature with a very particular behavior that I built primarily for myself (even more so than other features in Excalidraw Obsidian - also built primarily for myself 😉)... This will reset your embedded image to 100% size every time you open the Excalidraw drawing, or in case you have embedded an Excalidraw drawing on your canvas inserted using this function, every time you update the embedded drawing, it will be scaled back to 100% size. This means that even if you resize the image on the drawing, it will reset to 100% the next time you open the file or you modify the original embedded object. This feature is useful when you decompose a drawing into separate Excalidraw files, but when combined onto a single canvas you want the individual pieces to maintain their actual sizes. I use this feature to construct Book-on-a-Page summaries from atomic drawings.\r\n- I added an action to the command palette to temporarily disable/enable Excalidraw autosave. When autosave is disabled, Excalidraw will still save your drawing when changing to another Obsidian window, but it will not save every 10 seconds. On a mobile device (but also on a desktop) this can lead to data loss if you terminate Obsidian abruptly (i.e. swipe the application away, or close Obsidian without first closing the drawing). Use this feature if you find Excalidraw laggy.",
                "areNotesTruncated": false,
                "downloads": 877,
                "fileAssetIds": {
                    "manifestJson": 82708877,
                    "mainJs": 82708880
                },
                "publishedAt": "2022-10-29T12:36:26Z",
                "updatedAt": "2022-10-29T12:36:10Z"
            }
        ]
    }
]

API Privacy

The goal is sending the API only information needed for the plugin to function. Currently that's your list of installed plugins and their versions. AWS also automatically collects your IP which I have access to, and have no way of disabling.

Any changes in what's collected will be included in release notes, but it's unlikely to change.

Usage with lazy-plugin

When combining the Ignore Updates to Disabled Plugins setting with lazy-plugin, ensure that this plugin is loaded with the longest delay or else it may incorrectly identify another plugin as disabled.

Also, when this plugin detects that lazy-plugin and Ignore Updates to Disabled Plugins are enabled, this plugin will remain in the loading state for an extra 10 seconds before actually checking for updates. This helps avoid the issue of incorrectly considering a plugin disabled.

74%
HealthGood
ReviewCaution
About
Track available plugin updates and show status in the status bar or mobile ribbon. View a list of updates, read release notes rendered as Markdown, inspect code diffs and version stats, install or ignore updates, and opt into beta releases.
Status barGitMarkdown
Details
Current version
1.7.0
Last updated
12 months ago
Created
4 years ago
Updates
22 releases
Downloads
157k
Compatible with
Obsidian 0.15.0+
License
MIT
Report bugRequest featureReport plugin
Author
swar8080swar8080
github.com/swar8080/obsidian-plugin-update-tracker
GitHubswar8080
  1. Community
  2. Plugins
  3. Status bar
  4. Plugin Update Tracker

Related plugins

Importer

Import data from Notion, Evernote, Apple Notes, Microsoft OneNote, Google Keep, Bear, Roam, and HTML files.

Outliner

Work with your lists like in Workflowy or Roam Research.

Various Complements

Complete words similar to auto-completion in an IDE.

Linter

Format and style your notes. Linter can be used to format YAML tags, aliases, arrays, and metadata; footnotes; headings; spacing; math blocks; regular Markdown contents like list, italics, and bold styles; and more with the use of custom rule options.

Fantasy Statblocks

Create, manage and view a Fantasy Bestiary with Dungeons and Dragons style statblocks.

Day Planner (OG)

Day planning from a simple task list in a Markdown note (bare bones, preserves the features and behavior of the original plugin).

Auto Link Title

Automatically fetches the titles of links from the web.

Custom Frames

Turn web apps into panes using iframes with custom styling. Also comes with presets for Google Keep, Todoist and more.

Consistent attachments and links

Move note attachments and update links automatically.

Automatic Table Of Contents

Create a table of contents in a note that updates itself when the note changes.