-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
executable file
·33 lines (32 loc) · 974 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
{
"manifest_version": 2,
"name": "Flagger",
"version": "1.3.0",
"icons": {
"19": "data/images/icon_logo_19.png",
"48": "data/images/icon_logo_48.png",
"128": "data/images/icon_logo_128.png"
},
"description": "Flagger floods the Internet with red flag keywords. It shouldn't bother the NSA since they're not supposed to spy on us anyway.",
"browser_action": {
"default_title" : "Click for Flagger!",
"default_icon" : {
"19": "data/images/flag_gray.png",
"38": "data/images/flag_gray_38.png"
},
"default_popup": "data/html/popup.html"
},
"background": {
"scripts": [
"lib/flagger_http_observer_chrome.js",
"lib/flagger.js",
"lib/main_chrome.js"
],
"persistent": true
},
"permissions": ["tabs", "webRequest", "webRequestBlocking", "http://*/*", "https://*/*"],
"content_security_policy": "script-src 'self'; object-src 'self'",
"sandbox": {
"pages": ["data/html/templating_sandbox.html"]
}
}