Examine source code of bilibili blocked-uploader marker

Inspect and view changes in bilibili blocked-uploader marker 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__",
  "description": "__MSG_extensionDescription__",
  "version": "0.1",
  "default_locale": "en",
  "homepage_url": "https://github.com/wadefelix/bili-guard",
  "author": "Ren Wei",
  "content_scripts": [
    {
      "matches": [
        "https://*.bilibili.com/*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "cookies"
  ],
  "host_permissions": [
    "https://*.bilibili.com/*"
  ],
  "icons": {
    "16": "icons/bili-guard-16.png",
    "32": "icons/bili-guard-32.png",
    "48": "icons/bili-guard-48.png",
    "256": "icons/bili-guard-256.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}