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": "微信文件传输",
  "manifest_version": 3,
  "version": "1.0.0",
  "author": "Geocld<lijiahao5372@gmail.com>",
  "description": "更便捷的微信文件传输,可直接通过小窗口传输文件,让网页版更好用!",
  "icons": {
    "19": "images/20.png",
    "20": "images/20.png",
    "30": "images/20.png",
    "48": "images/20.png",
    "128": "images/128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": "images/20.png",
    "default_title": "欢迎使用微信文件传输扩展",
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "js": [
        "chrome/wxobserve.js"
      ],
      "matches": [
        "*://filehelper.weixin.qq.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "*://filehelper.weixin.qq.com/*"
  ],
  "homepage_url": "https://github.com/Geocld/wechat-file-transfer-extension",
  "web_accessible_resources": [
    {
      "resources": [
        "chrome/sendMessage.js",
        "chrome/sendFile.js",
        "chrome/catchList.js",
        "chrome/logout.js"
      ],
      "matches": [
        "*://filehelper.weixin.qq.com/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}