forked from harshayburadkar/clut-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevtools.html
More file actions
executable file
·37 lines (36 loc) · 835 Bytes
/
devtools.html
File metadata and controls
executable file
·37 lines (36 loc) · 835 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
28
29
30
31
32
33
34
35
36
37
{
"manifest_version": 2,
"name": "alt-tab",
"description": "Switch between the current and previously used tabs.",
"default_locale": "en",
"version": "0.1",
"short_name": "alt-tab: Switch to last tab",
"homepage_url": "https://splendidbits.co/alt-tab",
"incognito": "split",
"offline_enabled": true,
"omnibox": {
"keyword": "⎇"
},
"permissions": [
"tabs"
],
"update_url": "https://splenidbits.co/alt-tab/updateInfo.xml",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png",
"256": "icon48.png",
"512": "icon128.png"
},
"background":{
"scripts" : ["background.js"]
},
"commands": {
"alt_switch_fast": {
"description": "Switch to last tab. (suggested: Alt+Tab)"
}
},
"browser_action": {
"default_icon": "icon16.png"
}
}