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
{
  "name": "速翻译",
  "version": "1.0.0",
  "description": "速翻译是一款优秀高效的网页翻译工具,支持自动识别翻译,中文会翻译成英文,英文会翻译成中文,支持划词搜索。",
  "manifest_version": 2,
  "minimum_chrome_version": "60",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "icons/*",
    "images/*",
    "fonts/*"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/all.css"
      ],
      "js": [
        "js/all.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/extension-icon-x16.png",
      "32": "icons/extension-icon-x32.png",
      "48": "icons/extension-icon-x48.png",
      "128": "icons/extension-icon-x128.png"
    }
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "icons": {
    "16": "icons/extension-icon-x16.png",
    "32": "icons/extension-icon-x32.png",
    "48": "icons/extension-icon-x48.png",
    "128": "icons/extension-icon-x128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}