-
Notifications
You must be signed in to change notification settings - Fork 13
/
manifest.json
53 lines (47 loc) · 946 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
45
46
47
48
49
50
51
52
53
{
"name": "v2ex.ext",
"version": "0.2.8",
"manifest_version": 2,
"description": "V2EX Extension",
"homepage_url": "https://github.com/jkeylu/v2ex.ext",
"author": "jKey Lu",
"icons": {
"16": "v2ex.ico",
"48": "v2ex.ico",
"128": "v2ex.ico"
},
"permissions": [
"alarms",
"notifications",
"storage",
"*://*.weibo.com/",
"*://*.v2ex.com/",
"*://v2ex.com/"
],
"options_page": "option/options.html",
"background": {
"scripts": [
"js/jquery-2.1.1.min.js",
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*://*.v2ex.com/*",
"*://v2ex.com/*"
],
"css": [
"css/jquery.powertip.min.css",
"css/v2ex.ext.css"
],
"js": [
"js/jquery-2.1.1.min.js",
"js/jquery.powertip.min.js",
"js/v2ex.ext.js"
],
"run_at": "document_start"
}
]
}