forked from nicholaswan/jjb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (39 loc) · 1.04 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
{
"manifest_version": 2,
"name": "京价保 - 京东价保助手",
"short_name": "京价保",
"description": "京价保(京价宝)是自动为你申请京东价格保护,自动签到领京豆,自动领券的多功能京东助手",
"version": "{version}",
"background": {
"page": "background.html",
"persistent": true
},
"browser_action": {
"default_icon": "static/image/jjb.png",
"default_popup": "popup.html"
},
"sandbox": {
"pages": [
"render.html"
]
},
"content_scripts": [
{
"matches": ["*://*.jd.com/*", "*://*.jd.hk/*", "*://*.jdpay.com/*"],
"js": [
"static/zepto.min.js",
"static/content_script.js"
],
"css": [
"static/style/style.css"
],
"all_frames": true
}
],
"icons": {
"16": "static/image/16.png",
"48": "static/image/48.png",
"128": "static/image/128.png"
},
"permissions": ["*://*.jd.com/*", "*://*.jd.hk/*", "*://*.jdpay.com/*", "webRequest", "webRequestBlocking", "alarms", "tabs", "notifications"]
}