-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
48 lines (48 loc) · 935 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
45
46
47
48
{
"manifest_version": 2,
"name": "__MSG_name__",
"version": "1.5.2",
"description": "__MSG_description__",
"default_locale": "en",
"permissions": [
"contextualIdentities",
"menus",
"cookies"
],
"icons": {
"64": "icon.svg"
},
"browser_action": {
"default_title": "__MSG_popup__",
"default_icon": "icon.svg",
"default_area": "tabstrip",
"default_popup": "popup.html",
"theme_icons": [
{
"light": "icon_light.svg",
"dark": "icon.svg",
"size": 19
}
],
"browser_style": true
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Shift+W"
},
"description": "__MSG_popupShortcut__"
}
},
"browser_specific_settings": {
"gecko": {
"strict_min_version": "79.0"
}
}
}