-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmanifest.json
40 lines (40 loc) · 973 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
{
"name": "v2ex.k",
"version": "0.4.2",
"manifest_version": 2,
"description": "V2EX Extension",
"homepage_url": "https://github.com/kokdemo/v2ex.k",
"author": "kokdemo",
"icons": {
"16": "v2ex.png",
"48": "v2ex.png",
"128": "v2ex.png"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"*://*.v2ex.com/",
"*://v2ex.com/"
],
"content_scripts": [
{
"all_frames" :true,
"matches": [
"*://*.v2ex.com/*",
"*://v2ex.com/*"
],
"css": [
"css/font.css",
"css/v2ex.k.vue.css",
"css/theme_light.css",
"css/theme_dark.css"
],
"js": [
"js/vue.js",
"js/vue-href.js",
"js/v2ex.k.vue.js"
],
"run_at": "document_start"
}
]
}