-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json
56 lines (56 loc) · 1.34 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
{
"manifest_version": 2,
"name": "Go to random tab",
"version": "2.1.1",
"description": "A simple button to go to a random open tab.",
"homepage_url": "https://github.com/mikl/browser-go-to-random-tab",
"icons": {
"48": "icons/shuffle-48.png",
"96": "icons/shuffle-96.png"
},
"browser_specific_settings": {
"gecko": {
"id": "jid1-3vuPf16zAtrlFA@jetpack"
}
},
"permissions": ["tabs"],
"browser_action": {
"browser_style": true,
"default_area": "tabstrip",
"default_icon": {
"16": "icons/shuffle-dark-16.png",
"32": "icons/shuffle-dark-32.png",
"64": "icons/shuffle-dark-64.png"
},
"default_title": "Go to random tab",
"theme_icons": [
{
"light": "icons/shuffle-light-16.png",
"dark": "icons/shuffle-dark-16.png",
"size": 16
},
{
"light": "icons/shuffle-light-32.png",
"dark": "icons/shuffle-dark-32.png",
"size": 32
},
{
"light": "icons/shuffle-light-64.png",
"dark": "icons/shuffle-dark-64.png",
"size": 64
}
]
},
"background": {
"scripts": ["go-to-random-tab.js"],
"persistent": false
},
"commands": {
"go-to-random-tab": {
"suggested_key": {
"default": "Alt+Shift+R"
},
"description": "Switch to a random open tab."
}
}
}