-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
68 lines (68 loc) · 1.64 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"author": "Phong Le",
"background": {
"page": "background.html",
"persistent": true
},
"browser_action": {
"default_icon": {
"19": "assert/icon/16.png",
"38": "assert/icon/64.png"
},
"default_title": "Voz Living",
"default_popup": "assert/popup.html"
},
"content_scripts": [
{
"all_frames": false,
"js": [
"common.dll.js",
"content.dll.js",
"voz-living.js"
],
"css": [
"content-style.css"
],
"matches": [
"http://localhost-voz/",
"http://localhost-voz/*",
"*://*.localhost-voz/*",
"*://*.vozforums.com/*",
"http://*.vozforums.com/*",
"http://www.vozforums.com/*"
],
"run_at": "document_start"
}
],
"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
"description": "Voz Living - Better Voz",
"homepage_url": "https://www.facebook.com/VozLiving/",
"icons": {
"16": "assert/icon/16.png",
"32": "assert/icon/32.png",
"64": "assert/icon/64.png",
"128": "assert/icon/128.png",
"256": "assert/icon/256.png"
},
"manifest_version": 2,
"name": "Voz Living",
"options_page": "options.html",
"permissions": [
"http://vozforums.com/*",
"https://vozforums.com/*",
"http://www.vozforums.com/*",
"https://www.vozforums.com/*",
"http://*.pik.vn/*",
"notifications",
"storage",
"tabs"
],
"version": "3.0.0",
"web_accessible_resources": [
"assert/*"
],
"-ms-preload": {
"backgroundScript": "backgroundScriptsAPIBridge.js",
"contentScript": "contentScriptsAPIBridge.js"
}
}