forked from webtaculars/Universal-Bypass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
61 lines (61 loc) · 1.22 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
{
"manifest_version": 2,
"icons": {
"48": "icon/48.png",
"128": "icon/128.png",
"150": "icon/150.png",
"176": "icon/176.png",
"512": "icon/512.png"
},
"default_locale": "en",
"name": "Universal Bypass",
"description": "__MSG_appDesc__",
"homepage_url": "https://universal-bypass.org/",
"version": "13.6.1",
"author": "Tim \"timmyRS\" Speckhals",
"permissions": [
"alarms",
"storage",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"options_ui": {
"page": "html/options.html",
"open_in_tab": true
},
"browser_action": {
"default_icon": {
"48": "icon/48.png",
"128": "icon/128.png",
"150": "icon/150.png",
"176": "icon/176.png",
"512": "icon/512.png"
},
"default_popup": "html/popup.html"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content_script.js"],
"run_at": "document_start"
}
],
"browser_specific_settings": {
"gecko": {
"id": "{529b261b-df0b-4e3b-bf42-07b462da0ee8}"
}
},
"web_accessible_resources": [
"html/before-navigate.html",
"html/blocked.html",
"html/crowd-bypassed.html",
"html/firstrun.html",
"html/firstrun-noscript.html",
"html/options.html",
"icon/48.png"
]
}