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": "有道速读插件",
  "version": "1.0.0",
  "description": "识别页面中的pdf文件,一键跳转有道速读并上传打开",
  "permissions": [],
  "action": {
    "default_icon": {
      "128": "icon.png"
    },
    "default_title": "Redirect PDF"
  },
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "youdao_icon.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}