forked from Foliotek/chrome-revolver-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
27 lines (27 loc) · 810 Bytes
/
manifest.json
File metadata and controls
27 lines (27 loc) · 810 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
{
"manifest_version": 2,
"background": { "page": "bg.html" },
"browser_action": {
"default_icon": "revolver_t_19.png",
"default_title": "Revolver - Tabs - Automatically rotate through open tabs."
},
"description": "Automatically rotate through open tabs. By Ben Hedrington",
"icons": {
"128": "revolver_t_128.png",
"48": "revolver_t_48.png"
},
"name": "Revolver - Tabs",
"options_page": "options.html",
"permissions": [ "tabs", "idle", "storage" ],
"version": "0.7",
"commands": {
"stop-rotation": {
"suggested_key": { "default": "Alt+S" },
"description": "Stop Tab Rotation"
},
"start-rotation": {
"suggested_key": { "default": "Alt+R" },
"description": "Start Tab Rotation"
}
}
}