Examine source code of Mastodon Share for Browser

Inspect and view changes in Mastodon Share for Browser source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Mastodon Share",
  "description": "__MSG_description__",
  "browser_specific_settings": {
    "gecko": {
      "id": "mastodon-share@hellexis.fr",
      "strict_min_version": "115.0"
    }
  },
  "version": "0.9",
  "default_locale": "en",
  "options_ui": {
    "page": "options.html"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "assets/images/icon.png"
  },
  "background": {
    "scripts": [
      "assets/scripts/functions.js"
    ]
  },
  "permissions": [
    "cookies",
    "tabs",
    "activeTab",
    "storage"
  ],
  "icons": {
    "16": "assets/images/icon16.png",
    "32": "assets/images/icon32.png",
    "64": "assets/images/icon64.png"
  }
}