forked from ettoolong/PopupWindow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
47 lines (47 loc) · 1.03 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
{
"description": "__MSG_extDescription__",
"manifest_version": 2,
"name": "__MSG_extName__",
"version": "0.1.0",
"homepage_url": "https://github.com/JonathanBittner/PopupWindow",
"icons": {
"16": "icon/icon.svg",
"32": "icon/icon.svg",
"48": "icon/icon.svg",
"64": "icon/icon.svg",
"96": "icon/icon.svg"
},
"applications": {
"gecko": {
"id": "MaxPopupWindow@JonathanBittner",
"strict_min_version": "66.0"
}
},
"developer": {
"name": "Jonathan Bittner",
"url": "https://github.com/JonathanBittner/PopupWindow"
},
"background": {
"scripts": ["background.js"]
},
"permissions": [
"storage",
"contextMenus"
],
"browser_action": {
"browser_style": true,
"default_title": "__MSG_actionButtonTitle__",
"default_icon": "icon/icon.svg"
},
"default_locale": "en",
"options_ui": {
"page": "options.html",
"open_in_tab": false,
"browser_style": true
},
"commands": {
"popupWindow": {
"description": "__MSG_execute__"
}
}
}