Examine source code of WeChat sidebar

Inspect and view changes in WeChat sidebar 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": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "author": "Nandi Wang",
  "version": "1.1.5resigned1",
  "default_locale": "en",
  "applications": {
    "gecko": {
      "strict_min_version": "54.0a1",
      "id": "{65addb6b-ae39-4a19-be54-03e4ea1baf48}"
    }
  },
  "browser_action": {
    "default_icon": "icons/wechat-toolbar.png",
    "default_title": "__MSG_toolbarTitle__"
  },
  "sidebar_action": {
    "default_icon": "icons/wechat.png",
    "default_title": "__MSG_sidebarTitle__",
    "default_panel": "sidebar/panel.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://wx.qq.com/?pos=sidebar*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "commands": {
    "_execute_sidebar_action": {
      "suggested_key": {
        "default": "Alt+Shift+W"
      }
    }
  }
}