forked from tumpio/requestcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
38 lines (38 loc) · 984 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
{
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"version": "1.15.5",
"manifest_version": 2,
"icons": {
"48": "icons/icon.svg",
"96": "icons/icon.svg"
},
"browser_specific_settings": {
"gecko": {
"id": "{1b1e6108-2d88-4f0f-a338-01f9dbcccd6f}",
"strict_min_version": "60.0a01"
}
},
"permissions": [
"<all_urls>",
"storage",
"webNavigation",
"webRequest",
"webRequestBlocking"
],
"options_ui": {
"page": "src/options/options.html",
"open_in_tab": true,
"browser_style": false
},
"browser_action": {
"browser_style": false,
"default_icon": "icons/icon.svg",
"default_title": "__MSG_extensionName__",
"default_popup": "src/popup/browser-action.html"
},
"background": {
"page": "src/background.html"
}
}