forked from mikl/browser-go-to-random-tab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (39 loc) · 894 Bytes
/
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
{
"manifest_version": 2,
"name": "Go to random tab",
"version": "2.0.0",
"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/random-48.png",
"96": "icons/random-96.png"
},
"permissions": [
"tabs"
],
"browser_action": {
"browser_style": true,
"default_icon": {
"19": "icons/random-19.png",
"38": "icons/random-38.png"
},
"default_title": "Go to random tab"
},
"background": {
"scripts": ["go-to-random-tab.js"],
"persistent": false
},
"commands": {
"go-to-random-tab": {
"suggested_key": {
"default": "Ctrl + Alt + R"
},
"description": "Sends go-to-random event to the extension"
}
},
"applications": {
"gecko": {
"id": "[email protected]"
}
}
}