forked from jonathanKingston/merge-windows
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
39 lines (39 loc) · 861 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
{
"name": "Window Merger",
"version": "0.6.0",
"description": "Options to merge browser windows into one",
"icons": {
"16": "assets/icon016.png",
"24": "assets/icon024.png",
"32": "assets/icon032.png"
},
"developer": {
"name": "Martijn van der Ven",
"url": "https://vanderven.se/martijn/"
},
"background": {
"scripts": ["background.js"]
},
"commands": {
"merge-all-windows": {
"description": "Merge all windows into the current one."
},
"merge-previous-window": {
"description": "Merge previously focused window into the current one."
}
},
"manifest_version": 2,
"options_ui": {
"page": "preferences.html"
},
"permissions": [
"tabs",
"menus",
"storage"
],
"browser_specific_settings": {
"gecko": {
"strict_min_version": "56.0"
}
}
}