-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (42 loc) · 1.03 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
{
"manifest_version": 2,
"name": "ClickValue's VWO Chrome extension V2",
"version": "4.0.1",
"description": "A Visual Web Optimizer extension to see active experiments and change variations",
"author": "Daan van Ingen",
"icons": { "16": "./img/vwo.png",
"48": "./img/vwo.png",
"128": "./img/vwo.png" },
"browser_action": {
"default_icon": {
"16": "./img/vwo.png",
"24": "./img/vwo.png",
"32": "./img/vwo.png"
},
"default_title": "ClickValue's VWO Chrome Extension V2",
"default_popup": "main.html"
},
"permissions": [
"activeTab",
"http://*/*",
"https://*/*",
"webRequest",
"storage",
"cookies"
],
"web_accessible_resources" : [
"/js/dom-script.js",
"/js/prevDefault.js"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["./js/content-script.js"],
"permissions":"activeTab"
}
],
"background": {
"scripts": ["./js/app.js"
]
}
}