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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "云桌面调试器",
  "description": "用于调试云桌面web端",
  "version": "1.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "http://127.0.0.1:8500/",
    "http://192.168.91.31:8500/"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://127.0.0.1:8880/*",
        "http://192.168.91.31:8880/*",
        "https://10.50.209.205:9500/clinkweb/*"
      ],
      "js": [
        "debug-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "/icons/icon_16x16.png",
    "32": "/icons/icon_32x32.png",
    "128": "/icons/icon_128x128.png"
  }
}