-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
45 lines (45 loc) · 914 Bytes
/
manifest.json
File metadata and controls
45 lines (45 loc) · 914 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
41
42
43
44
45
{
"manifest_version": 2,
"name": "Workspaces",
"version": "1.1.3",
"description": "A beautiful workspace manager for Firefox",
"icons": {
"128": "icons/icon128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "workspaces@fm-sys",
"strict_min_version": "139.0"
}
},
"permissions": [
"tabs",
"tabHide",
"tabGroups",
"storage",
"menus",
"cookies"
],
"browser_action": {
"browser_style": true,
"default_icon": {
"64": "icons/dark64.png"
},
"default_title": "Workspaces",
"default_popup": "popup/wsp.html",
"theme_icons": [{
"light": "icons/light64.png",
"dark": "icons/dark64.png",
"size": 64
}]
},
"background": {
"scripts": [
"backend/storage.js",
"backend/workspace.js",
"backend/brainer.js",
"backend/handler.js",
"backend/tint.js"
]
}
}