Examine source code of SciHub Addon

Inspect and view changes in SciHub Addon 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_extName__",
  "description": "__MSG_extDesc__",
  "version": "3.4.5",
  "default_locale": "zh_CN",
  "icons": {
    "48": "img/sciadd_48.png",
    "128": "img/sciadd_128.png"
  },
  "action": {
    "default_icon": "img/sciadd_128.png",
    "default_title": "SciHub Addon",
    "default_popup": "html/popup.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "https://pos.baidu.com/*",
        "https://teams.live.com/*",
        "https://teams.microsoft.com/*"
      ],
      "js": [
        "chunk-vendors.js",
        "sciaddon.js"
      ],
      "css": [
        "css/style.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/*.js",
        "css/*.css",
        "img/*.gif",
        "img/*.png",
        "html/*.html"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}