Examine source code of Mirror Block

Inspect and view changes in Mirror Block 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
{
  "description": "__MSG_extension_description__",
  "manifest_version": 3,
  "name": "Mirror Block",
  "author": "Gaeulbyul <aeiou256@gmail.com>",
  "version": "0.15.1.1",
  "default_locale": "en",
  "homepage_url": "https://github.com/gaeulbyul/MirrorBlock",
  "icons": {
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png",
    "128": "icons/icon-128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{85e5d0a4-fc52-4d60-8634-7c67239276de}"
    }
  },
  "host_permissions": [
    "https://twitter.com/*",
    "https://x.com/*"
  ],
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab"
  ],
  "options_ui": {
    "page": "options/options.html"
  },
  "background": {
    "service_worker": "bundled/background.bun.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "https://x.com/*"
      ],
      "css": [
        "styles/mirrorblock.css",
        "styles/mob-badge.css",
        "styles/chainblock.css"
      ],
      "js": [
        "bundled/twitter.bun.js",
        "bundled/chainblock.bun.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://twitter.com/*",
        "https://x.com/*"
      ],
      "resources": [
        "bundled/twitter_inject.bun.js"
      ]
    }
  ],
  "action": {
    "default_icon": "icons/icon-48.png",
    "default_title": "Mirror Block",
    "default_popup": "popup/popup.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}