-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
54 lines (48 loc) · 1.13 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
{
"description": "Filter images transparently for kids",
"manifest_version": 2,
"name": "Wingman Jr.",
"version": "3.4.0",
"browser_specific_settings": {
"gecko": {
"strict_min_version": "91.1.0"
}
},
"permissions": [
"webRequest",
"webRequestBlocking",
"<all_urls>",
"menus",
"proxy",
"storage",
"tabHide",
"idle",
"contextMenus"
],
"background": {
"scripts": [
"roc.js",
"dns_blocking.js",
"mp4.js",
"ebml.js",
"status.js",
"encoders_data.js",
"encoders.js",
"background_gif.js",
"background.js",
"background_video.js",
"whitelist.js"
]
},
"options_ui": {
"page": "options.html"
},
"browser_action": {
"default_title" : "Wingman Jr. - Loading...",
"default_icon" : {
"32" : "icons/wingman_icon_32.png"
},
"default_popup" : "popup.html"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self' blob:; img-src blob: data:;"
}