链接小助手

链接小助手

浏览网页的提升效率小助手,支持一键点击快速下载视频(Ins、YouTube等)、微信公众号文章链接转小程序链接、网页增加特定信息等

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "链接小助手",
  "version": "3.2",
  "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"
  ],
  "browser_action": {},
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://itra.run/RunnerSpace/RaceResults/*"
      ],
      "js": [
        "itra.js"
      ]
    }
  ]
}