-
Notifications
You must be signed in to change notification settings - Fork 12
/
manifest.json
86 lines (86 loc) · 2.19 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "Vertical Tabs Reloaded",
"short_name": "VTR",
"description": "This Firefox add-on arranges tabs in a vertical rather than horizontal fashion.",
"version": "0.14.0.11",
"version_name": "0.14.0",
"manifest_version": 2,
"author": "Michael 'Croydon' Keck",
"developer":
{
"name": "Michael 'Croydon' Keck"
},
"homepage_url": "https://github.com/Croydon/vertical-tabs-reloaded",
"permissions": ["storage", "tabs", "activeTab", "unlimitedStorage", "sessions", "bookmarks"],
"incognito": "spanning",
"background":
{
"scripts":
[
"utils/namespace.js",
"utils/log.js",
"utils/options.js",
"utils/time.js",
"utils/windows.js",
"index.js"
]
},
"options_ui":
{
"page": "options/options.html"
},
"sidebar_action":
{
"default_title": "Vertical Tabs Reloaded",
"default_icon": "data/icon-16.png",
"default_panel": "vtr.html"
},
"browser_action":
{
"default_icon":
{
"16": "data/icon-16.png",
"48": "data/icon.png",
"96": "data/icon-96.png",
"128": "data/icon-128.png"
},
"theme_icons": [{
"light": "data/icon/icon-16-white.png",
"dark": "data/icon-16.png",
"size": 16
},
{
"light": "data/icon/icon-32-white.png",
"dark": "data/icon-32.png",
"size": 32
}],
"default_title": "Toggle Tab Sidebar",
"default_area": "navbar"
},
"commands":
{
"_execute_sidebar_action":
{
"suggested_key":
{
"default": "Ctrl+Shift+V"
},
"description": "Hotkey for showing/hiding the tab sidebar"
}
},
"icons":
{
"16": "data/icon-16.png",
"48": "data/icon.png",
"96": "data/icon-96.png",
"128": "data/icon-128.png"
},
"browser_specific_settings":
{
"gecko":
{
"id": "[email protected]",
"strict_min_version": "60.0"
}
}
}