forked from bypassiwastaken/skiovox-helper
-
Notifications
You must be signed in to change notification settings - Fork 3
/
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": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjQkFI6kg2UXbI7lyQDFc5GJ+MB0FPWAfdbWL3QVcNtufnzGrlies3us9Xxzx16W+dAg9V2J1o3f6YDHLIslNBv3TQ2KJsxGvAKrYgSBCbtsmCUvNlRJGTr01rMSJ1hgmgVWRrSxgfp7sgMo9JOptk8Fx1eUWcBKsIZwz1dlekiC6jSmiiGFSi1RMMwxXCaWSt/vp/MjZDLDyX7b88t/osXJ6Bzb/CSAjAZ3md8DyWpLvQDahLH2TaN7tnVNk6Tb+6jrn0a6y6+crMPR2Mp8RxHi6N2zxMynqMjJ0QGefwqPzbb4VKoqRfQQh3CUyqqsEwB1gH6zSjJx5JZa89oNvuwIDAQAB",
"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"
}
]
}