-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
48 lines (48 loc) · 1.36 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "自定义插件",
"manifest_version": 2,
"version": "1.0",
"description": "Chrome插件demo",
"browser_action": {
"default_icon": "bd.png"
},
"icons": {
"16":"bd.png",
"48":"bd.png",
"128":"bd.png"
},
"browser_action":
{
"default_icon": "bd.png",
// 图标悬停时的标题,可选
"default_title": "这是一个示例Chrome插件"
},
"content_scripts": [
// CSDN页面改版,运行此程序会导致无法点击“阅读全文”
// { // 屏蔽CSDN广告
// "matches": ["http://*.csdn.net/*"],
// "js": ["csdn.js"],
// "run_at": "document_end"
// },
{ // 屏蔽廖雪峰老师教程广告
"matches": ["https://www.liaoxuefeng.com/*"],
"js": ["liaoxuefeng.js"],
"run_at": "document_end"
},
{ // 屏蔽SASS教程广告
"matches": ["https://www.sass.hk/*/"],
"js": ["sass.js"],
"run_at": "document_end"
},
{ // 为顶点小说添加小说内容自适应功能
"matches": ["http://www.x23us.com/*/*/*/*.html", "http://www.23us.so/files/article/html/*/*/*.html"],
"js": ["x23us.js"],
"run_at": "document_end"
},
{ // 为笔趣阁小说添加小说内容自适应功能
"matches": ["http://www.qu.la/book/*/*.html", "http://www.biquge.cm/*/*/*.html"],
"js": ["qula.js"],
"run_at": "document_end"
}
]
}