Examine source code of Box3代码编写辅助插件

Inspect and view changes in Box3代码编写辅助插件 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": "Box3代码编写辅助插件",
  "version": "0.5",
  "description": "Box3的非官方辅助插件,可以进行快速查找API、bug识别等功能",
  "author": "全能岛民",
  "icons": {
    "16": "./images/icon16.png",
    "48": "./images/icon48.png",
    "128": "./images/icon128.png"
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "notifications"
  ],
  "browser_action": {
    "default_icon": "./images/icon32.png",
    "default_title": "Box3代码编写辅助插件",
    "default_popup": "./html/popup.html"
  },
  "background": {
    "scripts": [
      "./js/background.js"
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}