-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathmanifest.json
68 lines (68 loc) · 1.59 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "Session Sync",
"version": "3.1.12",
"author": "Gabriel Ivanica",
"description": "Save sessions as bookmarks and sync them through Firefox Sync (or any other sync engine).\nPowerful session management - organize, edit, change, save, restore, etc\n",
"homepage_url": "https://github.com/ReDEnergy/SessionSync",
"manifest_version": 2,
"default_locale": "en",
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"icons": {
"16": "data/images/icon16.png",
"32": "data/images/icon32.png",
"48": "data/images/icon48.png",
"64": "data/images/icon64.png",
"96": "data/images/icon96.png",
"128": "data/images/icon128.png"
},
"background": {
"scripts": [
"scripts/main.js",
"scripts/favicon-service.js",
"scripts/session-management.js",
"scripts/session-history.js",
"scripts/development.js"
]
},
"permissions": [
"storage",
"bookmarks",
"tabs",
"clipboardWrite",
"unlimitedStorage"
],
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "data/images/icon16.png",
"32": "data/images/icon32.png",
"64": "data/images/icon64.png"
},
"default_title": "Session Sync",
"default_popup": "data/session-sync.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+F"
},
"description": "Toggle Widget"
},
"session-sync-detach-tab": {
"suggested_key": {
"default": "Ctrl+Shift+V"
},
"description": "Tab View"
},
"session-sync-detach-window": {
"suggested_key": {
"default": "Ctrl+Shift+U"
},
"description": "Window View"
}
}
}