Examine source code of TT翻译

Inspect and view changes in TT翻译 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_8969005060131950570__",
  "description": "__MSG_5636646071825253269__",
  "options_page": "options.html",
  "default_locale": "zh_CN",
  "background": {
    "service_worker": "uv3/background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-38.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "ct.bundle.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "declarativeNetRequest",
    "storage",
    "scripting"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "commands": {
    "CMD_DOWNLOAD_CURRENT_TAB": {
      "suggested_key": "Alt+T",
      "description": "Translate current page"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "version": "1.0.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}