-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
50 lines (50 loc) · 1.19 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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "1.6.9",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"applications": {
"gecko": {
"id": "{56b8308e-566b-4dc0-9957-f6341ceb8552}",
"strict_min_version": "115.0"
}
},
"icons": {
"48": "icons/icon-48x48.png",
"96": "icons/icon-96x96.png"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"<all_urls>",
"contextMenus",
"storage"
],
"browser_action": {
"default_title": "__MSG_browserAction__"
},
"options_ui": {
"page": "options.html"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"http://*/*",
"https://*/*",
"file:///*"
],
"js": [
"content_script.js"
]
}
],
"web_accessible_resources": [
"injects/touch_start_event_blocking.js",
"loading.svg"
],
"background": {
"page": "background.html"
}
}