-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
48 lines (48 loc) · 1.1 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": "second-kill",
"version": "1.20",
"manifest_version": 2,
"description": "second-kill",
"permissions": [
"tabs",
"contextMenus",
"notifications",
"management",
"http://*/*",
"https://*/*"
],
"browser_action": {
"default_icon": "src/img/ico.png",
"default_title": "second-kill",
"default_popup": "src/popup/popup.html"
},
// "background": {
// "scripts": ["src/lib/jquery-1.10.2.js", "src/bg/bg.js"]
// },
"background":
{
// 2种指定方式,如果指定JS,那么会自动生成一个背景页
"page": "src/bg/bg.html"
},
"options_page": "src/option/options.html",
"icons": {
"16": "src/img/ico.png",
"48": "src/img/ico.png",
"128": "src/img/ico.png"
},
"web_accessible_resources": [
"src/lib/jquery-1.10.2.js",
"src/main/inject_qiuxuan.js"
],
"content_scripts": [
{
"matches": [
"*://*.taobao.com/*",
"*://*.tmall.com/*",
"*://*.enjoyapps.org/miaotest.htm*"
],
"js": ["src/lib/jquery-1.10.2.js", "src/main/content_scripts.js"],
"run_at": "document_end"
}
]
}