-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
140 lines (131 loc) · 3.55 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "0.10.0beta1",
"applications": {
"gecko": {
"id": "{57B65ABB-F4E3-4358-8472-15AEE0833E11}"
}
},
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"icons": {
"32": "icons/nextplease-logo-32.png"
},
"browser_action": {
"default_icon": "icons/nextplease-logo-32.png",
"default_title": "__MSG_extensionName__",
"default_popup": "popup/nextplease_popup.html",
"browser_style": true
},
"commands": {
"Next": {
"suggested_key": {
"default": "Alt+Shift+Right"
},
"description": "__MSG_NextPageCommand__"
},
"Prev": {
"suggested_key": {
"default": "Alt+Shift+Left"
},
"description": "__MSG_PrevPageCommand__"
},
"First": {
"suggested_key": {
"default": "Alt+Shift+Up"
},
"description": "__MSG_FirstPageCommand__"
},
"Last": {
"suggested_key": {
"default": "Alt+Shift+Down"
},
"description": "__MSG_LastPageCommand__"
},
"0": {
"suggested_key": {
"default": "Alt+Shift+0"
},
"description": "__MSG_Digit0Command__"
},
"1": {
"suggested_key": {
"default": "Alt+Shift+1"
},
"description": "__MSG_Digit1Command__"
},
"2": {
"suggested_key": {
"default": "Alt+Shift+2"
},
"description": "__MSG_Digit2Command__"
},
"3": {
"suggested_key": {
"default": "Alt+Shift+3"
},
"description": "__MSG_Digit3Command__"
},
"4": {
"suggested_key": {
"default": "Alt+Shift+4"
},
"description": "__MSG_Digit4Command__"
},
"5": {
"suggested_key": {
"default": "Alt+Shift+5"
},
"description": "__MSG_Digit5Command__"
},
"6": {
"suggested_key": {
"default": "Alt+Shift+6"
},
"description": "__MSG_Digit6Command__"
},
"7": {
"suggested_key": {
"default": "Alt+Shift+7"
},
"description": "__MSG_Digit7Command__"
},
"8": {
"suggested_key": {
"default": "Alt+Shift+8"
},
"description": "__MSG_Digit8Command__"
},
"9": {
"suggested_key": {
"default": "Alt+Shift+9"
},
"description": "__MSG_Digit9Command__"
}
},
"options_ui": {
"page": "options/options.html",
"browser_style": true,
"chrome_style": true
},
"permissions": [
"activeTab",
"storage",
"notifications",
"contextMenus"
],
"background": {
"scripts": ["lib/configs/Configs.js", "scripts/nextplease_common.js", "scripts/nextplease_background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["scripts/nextplease_menu.js"]
},
{
"matches": ["<all_urls>"],
"js": ["lib/configs/Configs.js", "scripts/nextplease_common.js", "scripts/nextplease_content.js"]
}
]
}