链接小助手

浏览网页的提升效率小助手,支持一键点击快速下载视频(Ins、YouTube等)、微信公众号文章链接转小程序链接、网页增加特定信息等
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",
  "name": "链接小助手",
  "version": "3.3",
  "description": "浏览网页的提升效率小助手,支持一键点击快速下载视频(Ins、YouTube等)、微信公众号文章链接转小程序链接、网页增加特定信息等",
  "manifest_version": 2,
  "homepage_url": "https://github.com/ZhuPeng/mp-transform-public",
  "icons": {
    "16": "img/link-16.png",
    "32": "img/link-32.png",
    "64": "img/link-64.png",
    "128": "img/link-128.png"
  },
  "permissions": [
    "activeTab",
    "clipboardWrite",
    "identity",
    "identity.email",
    "webRequest",
    "webRequestBlocking"
  ],
  "host_permissions": [
    "http://localhost/*",
    "https://itra.run/api/Race/*"
  ],
  "browser_action": {},
  "background": {
    "scripts": [
      "util.js",
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://live.utmb.world/*/runners/*",
        "https://itra.run/RunnerSpace/RaceResults/*",
        "https://itra.run/api/RunnerSpace/*",
        "https://*.utmb.world/races/*"
      ],
      "js": [
        "util.js",
        "handlers/itra.js"
      ]
    },
    {
      "matches": [
        "https://mp.weixin.qq.com/s?__biz=MzAwMzE5NzM2Nw==*"
      ],
      "js": [
        "handlers/gongzhonghao.js"
      ]
    }
  ]
}