-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
54 lines (46 loc) · 1.02 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
{
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"version": "1.0.1",
"manifest_version": 2,
"default_locale": "en",
"permissions": ["storage", "notifications"],
"background": {
"scripts": ["browser-polyfill.min.js", "shared.js", "background.js"],
"persistent": false
},
"omnibox": { "keyword" : "!" },
"browser_action": {
"default_icon": {
"16": "icon16.png",
"32": "icon32.png"
},
"default_popup": "popup.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+L"
}
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{4397b935-aae4-4b2c-8afe-6655491dee56}",
"strict_min_version": "42.0"
},
"edge": {
"browser_action_next_to_addressbar": true
}
}
}