Examine source code of 微博扩展

Inspect and view changes in 微博扩展 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": "微博扩展",
  "description": "微博扩展插件 - 支持一键拉黑点赞",
  "version": "1.9",
  "permissions": [
    "scripting"
  ],
  "host_permissions": [
    "https://weibo.com/*",
    "https://*.weibo.com/*"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self';"
  },
  "options_page": "dist/options.html",
  "action": {
    "default_title": "微博扩展",
    "default_popup": "dist/popup.html"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "inject-script.js",
        "icons/icon38.png",
        "virtualPage.output.css",
        "weiboSave/*"
      ],
      "matches": [
        "https://weibo.com/*",
        "https://*.weibo.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "run_at": "document_idle",
      "matches": [
        "https://weibo.com/*",
        "https://*.weibo.com/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}