-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
66 lines (66 loc) · 1.49 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
{
"name": "Tab Rearranger",
"description": "This extension allows you to rearrange tabs with a keyboard shortcut",
"version": "0.3.0",
"manifest_version": 2,
"browser_action": {
"default_title": "Tab Rearranger",
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"background": {
"scripts": ["background.js"],
"persistent": true
},
"commands": {
"move_tab_back": {
"suggested_key": {
"default": "Ctrl+Shift+Left",
"mac": "Alt+Shift+Left"
},
"description": "Move Tab Back"
},
"move_tab_forward": {
"suggested_key": {
"default": "Ctrl+Shift+Right",
"mac": "Alt+Shift+Right"
},
"description": "Move Tab Forward"
},
"move_to_position_1": {
"suggested_key": {
"default": "Ctrl+Shift+1",
"mac": "Alt+Shift+1"
},
"description": "Move Tab to First Position"
},
"move_to_position_2": {
"description": "Move Tab to Position 2"
},
"move_to_position_3": {
"description": "Move Tab to Position 3"
},
"move_to_position_4": {
"description": "Move Tab to Position 4"
},
"move_to_position_5": {
"description": "Move Tab to Position 5"
},
"move_to_position_6": {
"description": "Move Tab to Position 6"
},
"move_to_position_7": {
"description": "Move Tab to Position 7"
},
"move_to_position_8": {
"description": "Move Tab to Position 8"
},
"move_to_position_9": {
"suggested_key": {
"default": "Ctrl+Shift+9",
"mac": "Alt+Shift+9"
},
"description": "Move Tab to Last Position"
}
}
}