-
Notifications
You must be signed in to change notification settings - Fork 293
/
manifest.json
44 lines (44 loc) · 892 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
{
"manifest_version": 2,
"icons": {
"128": "icon/icon_128.png",
"256": "icon/icon_256.png",
"512": "icon/icon_512.png"
},
"default_locale": "en",
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"homepage_url": "https://universal-bypass.org/",
"version": "2.1.1",
"author": "timmyRS",
"minimum_chrome_version": "41",
"options_page": "html/options.html",
"permissions": [
"storage"
],
"browser_action": {
"default_icon": {
"128": "icon/icon_128.png",
"256": "icon/icon_256.png",
"512": "icon/icon_512.png"
},
"default_popup": "html/popup.html"
},
"background": {
"scripts": ["src/background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": [
"src/bypass_index.js",
"src/content_script.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"bypasses/*.js"
]
}