-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
31 lines (31 loc) · 761 Bytes
/
manifest.json
File metadata and controls
31 lines (31 loc) · 761 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
{
"manifest_version": 2,
"name": "Workspace_Manager",
"version": "1.0",
"description": "Manages and saves Workspaces.",
"icons": {
"48": "icons/ws-icon.svg"
},
"permissions": [
"activeTab",
"storage",
"tabs"
],
"browser_specific_settings": {
"gecko": {
"id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
"strict_min_version": "42.0"
}
},
"browser_action": {
"default_icon": "icons/ws-icon.svg",
"default_title": "Add Workspace",
"default_popup": "popup/workspaces.html"
},
"chrome_url_overrides": {
"newtab": "new-tab.html"
},
"chrome_settings_overrides": {
"homepage": "new-tab.html"
}
}