Examine source code of 腾讯 CoDesign 浏览器采集插件

Inspect and view changes in 腾讯 CoDesign 浏览器采集插件 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": "腾讯 CoDesign 浏览器采集插件",
  "version": "3.1.8",
  "description": "支持采集 PNG、JPG、GIF、WEBP 等多种素材格式;支持在线管理灵感素材,团队成员共享调用",
  "permissions": [
    "activeTab",
    "storage",
    "system.display",
    "tabs",
    "contextMenus",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "import-content-scripts.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "public/iconfont/iconfont.js",
        "public/shadow-styles/*.css"
      ]
    },
    {
      "resources": [
        "chunks/*-*.js",
        "content-scripts.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*",
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_popup": "pages/popup/index.html",
    "default_icon": {
      "16": "public/icons/icon16.png",
      "24": "public/icons/icon24.png",
      "32": "public/icons/icon32.png",
      "48": "public/icons/icon48.png",
      "96": "public/icons/icon96.png",
      "128": "public/icons/icon128.png"
    }
  },
  "icons": {
    "16": "public/icons/icon16.png",
    "24": "public/icons/icon24.png",
    "32": "public/icons/icon32.png",
    "48": "public/icons/icon48.png",
    "96": "public/icons/icon96.png",
    "128": "public/icons/icon128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}