-
Notifications
You must be signed in to change notification settings - Fork 145
/
Copy pathmanifest.json
103 lines (103 loc) · 2.35 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"manifest_version": 2,
"version": "2.4.1",
"name": "Skiovox Helper",
"description": "A helper for the Skiovox exploit -- read more at skiovox.com",
"icons": {
"128": "icon.png"
},
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAumR4jfjFFAV2w/Ag56R6CLN2FNVnOO03UyayDHJJOGAXc7MIzElD6opvefPoZi6EHPqH4IvuRZ+u3EaWdv36lUOWMx7ieHjptmvyMF1BTaKbFaH5iyn/8dwnGvKoqWftA+mn1eb7vvzrQWaewP2IuMuHckY9p/whRy0XyW4bAMYP5Uw+oCTMayNzB8LbiczHttVt4f3003bRZ5QljqSl7QNHL6gCUteXKMCMYiXNigSTaShHeXjKWIaKwSoyU/kpKkr1YyCQlbtBGVwQQbuiaA34f7o0ZG6I57hPB+0bMHXIvEGj4kcHZo3C6iVWaV1dS3XCC/q404Kr09lqjloS7wIDAQAB",
"commands": {
"ACCESS_HISTORY": {
"description": "Ctrl+H"
},
"ACCESS_DOWNLOADS": {
"description": "Ctrl+J"
},
"NEW_TAB": {
"description": "Ctrl+T"
},
"CLOSE_TAB": {
"description": "Ctrl+W"
},
"RESTORE_TAB": {
"description": "Ctrl+Shift+T"
},
"NEW_WINDOW": {
"description": "Ctrl+N"
},
"NEW_INCOG_WINDOW": {
"description": "Ctrl+Shift+N"
},
"CLOSE_WINDOW": {
"description": "Ctrl+Shift+W"
},
"TAB_NEXT": {
"description": "Cycle forwards through tabs: Ctrl+Q"
},
"TAB_BACK": {
"description": "Cycle backwards through tabs: Ctrl+Shift+Q"
},
"SWITCH_WINDOWS": {
"description": "Switch windows: Alt+Q"
},
"CTRL_1": {
"description": "Ctrl+1"
},
"CTRL_2": {
"description": "Ctrl+2"
},
"CTRL_3": {
"description": "Ctrl+3"
},
"CTRL_4": {
"description": "Ctrl+4"
},
"CTRL_5": {
"description": "Ctrl+5"
},
"CTRL_6": {
"description": "Ctrl+6"
},
"CTRL_7": {
"description": "Ctrl+7"
},
"CTRL_8": {
"description": "Ctrl+8"
},
"CTRL_9": {
"description": "Ctrl+9"
},
"VIEW_SOURCE": {
"description": "Ctrl+U"
}
},
"background": {
"scripts": [
"/background/commands.js",
"/background/setup.js",
"/background/webstore-fix.js"
]
},
"chrome_url_overrides": {
"newtab": "/new-tab/main.html"
},
"permissions": [
"commands",
"tabs",
"sessions",
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"/content-scripts/window-open-fix.js"
],
"all-frames": true,
"run-at": "document_start"
}
]
}