-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
29 lines (29 loc) · 1.34 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"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", "http://localhost/*"],
"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://live.utmb.world/*/runners/*", "https://www.geexek.com/score/pscore?*", "https://sport.luojiweiye.com/web/h5/new_grade_cret.html*", "https://*/coureur.php?rech=*"],
"js": ["util.js", "handlers/race_subscribe.js"]
}, {
"matches": ["https://mp.weixin.qq.com/s?__biz=MzAwMzE5NzM2Nw==*", "https://mp.weixin.qq.com/s/*"],
"js": ["util.js", "handlers/gongzhonghao.js"]
}]
}