Examine source code of 同步Cookie

Inspect and view changes in 同步Cookie 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": "同步Cookie",
  "version": "1.5.0",
  "description": "将Cookie同步上特定服务, 处理免登问题",
  "author": "diufantu",
  "icons": {
    "16": "icons/cookie16.png",
    "32": "icons/cookie32.png",
    "48": "icons/cookie48.png",
    "128": "icons/cookie128.png"
  },
  "action": {
    "default_icon": "icons/cookie48.png",
    "default_title": "将Cookie同步上特定服务, 处理免登问题",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://live.kuaishou.com/*",
        "*://*.douyin.com/*",
        "*://mobile.yangkeduo.com/*",
        "*://channels.weixin.qq.com/*",
        "*://buyin.jinritemai.com/*",
        "*://redlive.xiaohongshu.com/*",
        "*://mobile.yangkeduo.com/*",
        "*://*.bibolic.com/*",
        "*://*.taobao.com/*",
        "*://localhost/*"
      ],
      "js": [
        "contentScript.js",
        "syncProduc.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inject.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "cookies",
    "tabs",
    "storage",
    "scripting",
    "downloads",
    "notifications",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}