Examine source code of ShareSwitch - Redirect Twitter share buttons to Bluesky, Mastodon, and more

Inspect and view changes in ShareSwitch - Redirect Twitter share buttons to Bluesky, Mastodon, and more 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": 3,
  "name": "__MSG_extensionName__",
  "version": "1.1.1",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "16": "images/share-switch-16.png",
    "48": "images/share-switch-48.png",
    "128": "images/share-switch-128.png"
  },
  "default_locale": "en",
  "homepage_url": "https://github.com/bam1279/share-switch",
  "background": {
    "service_worker": "service-worker/service-worker.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup/popup.html"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "host_permissions": [
    "*://twitter.com/*",
    "*://x.com/*"
  ],
  "permissions": [
    "scripting",
    "storage",
    "webNavigation"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}