-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
44 lines (39 loc) · 942 Bytes
/
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
{
"name" : "__MSG_appName__",
"description" : "__MSG_appDesc__",
"default_locale": "zh_CN",
"version" : "2.0",
"manifest_version" : 2,
"permissions" : [
"declarativeContent",
"activeTab",
"tabs",
"storage",
"http://127.0.0.1:8000/*",
"http://bili.wansho.top/*"
],
"background" : {
"scripts" : ["static/js/jquery-2.0.3.min.js", "background.js"],
"persistent" : false
},
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16" : "static/images/16.png",
"32" : "static/images/32.png",
"48" : "static/images/48.png"
}
},
"content_scripts": [
{
"matches": ["https://www.bilibili.com/video/av*", "https://www.bilibili.com/video/BV*"],
"js": ["static/js/jquery-2.0.3.min.js", "static/js/echarts.min.js", "contentscript.js"],
"run_at": "document_end"
}
],
"icons": {
"16" : "static/images/16.png",
"32" : "static/images/32.png",
"48" : "static/images/48.png"
}
}