Examine source code of HB font 字体上传

Inspect and view changes in HB font 字体上传 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "HB font 字体上传",
  "description": "iconfont字体上传至nuwa",
  "version": "1.0",
  "host_permissions": [
    "*://at.alicdn.com/*",
    "*://nuwa.global-base.tc-jp1.huobiapps.com/api/common/upload",
    "*://nuwa.huobiapps.com/api/common/upload"
  ],
  "icons": {
    "16": "icon/icon_16.png",
    "32": "icon/icon_32.png",
    "128": "icon/icon_128.png"
  },
  "action": {
    "default_icon": "icon/icon_32.png",
    "default_title": "font字体上传",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.iconfont.cn/*"
      ],
      "js": [
        "js/getCode.js"
      ],
      "run_at": "document_end"
    }
  ]
}