forked from jonathanKingston/merge-windows
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
40 lines (40 loc) · 922 Bytes
/
manifest.json
File metadata and controls
40 lines (40 loc) · 922 Bytes
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
{
"name": "Window Merger",
"version": "0.7.1",
"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"],
"type": "module"
},
"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": 3,
"options_ui": {
"page": "preferences.html"
},
"permissions": ["tabs", "menus", "storage"],
"browser_specific_settings": {
"gecko": {
"id": "{a116b6c7-0611-4938-ba3d-2e4c61241128}",
"strict_min_version": "112.0",
"data_collection_permissions": {
"required": ["none"]
}
}
}
}