-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
44 lines (39 loc) · 916 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
{
"description": "Inhouse aidahbot tool that serves as a proxy server for redirection during development",
"manifest_version": 2,
"name": "aidahrector",
"version": "1.0",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": [
"http://*/*",
"https://*/*",
"webRequest",
"<all_urls>",
"activeTab",
"tabs",
"storage",
"webRequest",
"notifications",
"webRequestBlocking"
],
"browser_action": {
"default_icon": "img/logo-48.png",
"default_popup": "./home.html"
},
"icons": {
"128": "img/logo-128.png",
"16": "img/logo-16.png",
"48": "img/logo-48.png"
},
"background": {
"scripts": [
"js/lib/vue.js",
"js/lib/underscore.js",
"js/background.js"
]
},
"content_scripts": [ {
"js": [ "js/bot.js" ],
"matches": [ "\u003Call_urls>" ]
}]
}