-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.js
294 lines (243 loc) · 8.03 KB
/
main.js
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
"use strict";
const _ = browser.i18n.getMessage;
let isThemeDark = false;
function checkCurrentTheme (theme) {
isThemeDark = theme.name === "Dark"
|| (theme.name === "Default"
&& window.matchMedia("(prefers-color-scheme: dark)").matches);
}
// Detect theme for icon contrast
browser.management.getAll().then(extensions => {
const currentTheme = extensions.filter(
ext => ext.type === "theme" && ext.enabled)[0];
checkCurrentTheme(currentTheme);
updateAllPageActionIcons();
});
// Listen for theme changes to maintain icon contrast
browser.management.onEnabled.addListener(info => {
if (info.type === "theme") {
checkCurrentTheme(info);
updateAllPageActionIcons();
}
});
let pageActionTitleIdle;
let pageActionTitleBusy = _("page_action_busy_title", "Esc");
// Detect OS to set macOS shortcuts
browser.runtime.getPlatformInfo().then(info => {
pageActionTitleIdle = _("page_action_idle_title"
, `${info.os === "mac" ? "⌘" : "Ctrl"}+R`);
});
const animationTimeouts = new Map();
/**
* Updates the reload button icon for the page action attached to the
* tab specified.
*
* @param tab Tab with the page action to update
* @param isAnimated Set icon and start an animation
*/
function updatePageActionIcon (tab, isAnimated = true) {
let path;
if (animationTimeouts.has(tab.id)) {
window.clearTimeout(animationTimeouts.get(tab.id));
}
if (isAnimated) {
const reloadIconPath = isThemeDark
? "data/reload_to_stop_dark.svg"
: "data/reload_to_stop_light.svg";
const stopIconPath = isThemeDark
? "data/stop_to_reload_dark.svg"
: "data/stop_to_reload_light.svg";
// Bypass caching
const queryString = `?t=${Math.random().toString(36).slice(2, 8)}`;
path = (tab.status === "loading"
? stopIconPath
: reloadIconPath) + queryString;
// Set the still frame icon after the animation finishes
const timeoutId = window.setTimeout(() => {
updatePageActionIcon(tab, false);
animationTimeouts.delete(tab.id);
}, 417);
animationTimeouts.set(tab.id, timeoutId);
} else {
const reloadIconPath = isThemeDark
? "data/reload_dark.svg"
: "data/reload_light.svg";
const stopIconPath = isThemeDark
? "data/stop_dark.svg"
: "data/stop_light.svg";
path = tab.status === "loading"
? stopIconPath
: reloadIconPath;
}
const actionIcon = {
tabId: tab.id
, path
};
browser.pageAction.setIcon(actionIcon);
browser.browserAction.setIcon(actionIcon);
}
/**
* Updates reload button icons on all tabs
*/
function updateAllPageActionIcons () {
browser.tabs.query({}).then(tabs => {
for (const tab of tabs) {
updatePageActionIcon(tab);
}
});
}
/**
* Shows the reload button on a tab. Called initially on startup and
* once a tab has been created.
*
* @param tab Tab with the page action to show
*/
function updatePageAction (tab) {
browser.pageAction.show(tab.id);
const actionTitle = {
tabId: tab.id
, title: tab.status === "loading"
? pageActionTitleBusy
: pageActionTitleIdle
};
browser.pageAction.setTitle(actionTitle);
browser.browserAction.setTitle(actionTitle);
}
function onActionClicked (tab, info) {
if (tab.status === "loading") {
/**
* Extension API has no stop method, best alternative is to inject a
* script into the page and use the window.stop API.
*
* Injecting scripts into privileged pages isnt possible. Usually
* doesn't matter since it's almost instant, but stopping loading from
* about: pages or error pages will fail.
*/
browser.tabs.executeScript({
code: "window.stop()"
, runAt: "document_start"
}).catch(err => {
console.error(`${_("extension_name")}: https://git.io/vbCz7`);
});
} else {
if (info.button === 1
|| info.modifiers.includes("Ctrl")
|| info.modifiers.includes("Command")) {
browser.tabs.duplicate(tab.id);
} else {
browser.tabs.reload({
bypassCache: info.modifiers.includes("Shift")
});
}
}
}
browser.pageAction.onClicked.addListener(onActionClicked);
browser.browserAction.onClicked.addListener(onActionClicked);
// Show page action on all tabs
browser.tabs.query({}).then(tabs => {
for (const tab of tabs) {
updatePageAction(tab);
updatePageActionIcon(tab);
}
});
// Show page action on new tabs
browser.tabs.onCreated.addListener(tab => {
updatePageAction(tab);
updatePageActionIcon(tab);
});
browser.tabs.onUpdated.addListener((tabId, info, tab) => {
updatePageAction(tab);
updatePageActionIcon(tab, false);
}, { properties: [ "status" ] });
/**
* Store timestamps for each navigation event to reference in
* future.
*/
const navigationTimestamp = new Map();
function onNavigation (details) {
// Only act on top-level navigation
if (details.frameId) return;
browser.tabs.get(details.tabId)
.then(tab => {
let shouldAnimate = true;
if (navigationTimestamp.has(details.tabId)) {
// Time since last navigation
const diff = details.timeStamp
- navigationTimestamp.get(details.tabId);
/**
* If time passed is less than duration of the animation, just
* set still frames.
*/
if (diff < 417) {
shouldAnimate = false;
}
}
updatePageAction(tab);
updatePageActionIcon(tab, shouldAnimate);
// Record new timestamp
navigationTimestamp.set(details.tabId, details.timeStamp);
});
}
// Show/update icon on navigation
browser.webNavigation.onBeforeNavigate.addListener(onNavigation);
browser.webNavigation.onCompleted.addListener(onNavigation);
// Update icon on stop
browser.webNavigation.onErrorOccurred.addListener(onNavigation);
/**
* bypassCache on reload only applies to content loaded with
* the page. For anything loaded after, the cache must be
* cleared properly.
*/
function emptyCacheAndHardReload () {
// Clear cache
browser.browsingData.remove({}, { cache: true })
.then(() => {
// Reload once cache is cleared
browser.tabs.reload({
bypassCache: true
});
});
}
browser.commands.onCommand.addListener(command => {
switch (command) {
case MENU_ID_EMPTY_CACHE_AND_HARD_RELOAD:
emptyCacheAndHardReload();
break;
}
});
const MENU_ID_NORMAL_RELOAD = "menu_normal_reload";
const MENU_ID_HARD_RELOAD = "menu_hard_reload";
const MENU_ID_EMPTY_CACHE_AND_HARD_RELOAD = "menu_empty_cache_and_hard_reload";
browser.runtime.onInstalled.addListener(() => {
browser.menus.create({
id: MENU_ID_NORMAL_RELOAD
, title: _("page_action_context_normal_reload_title")
, command: "_execute_page_action"
, contexts: [ "page_action" , "browser_action" ]
});
browser.menus.create({
id: MENU_ID_HARD_RELOAD
, title: _("page_action_context_hard_reload_title")
, contexts: [ "page_action" , "browser_action" ]
});
browser.menus.create({
id: MENU_ID_EMPTY_CACHE_AND_HARD_RELOAD
, title: _("page_action_context_empty_cache_and_hard_reload_title")
, contexts: [ "page_action", "browser_action" ]
})
})
browser.menus.onClicked.addListener((info, tab) => {
switch (info.menuItemId) {
// Reload without cached content
case MENU_ID_HARD_RELOAD: {
browser.tabs.reload({
bypassCache: true
});
break;
}
case MENU_ID_EMPTY_CACHE_AND_HARD_RELOAD: {
emptyCacheAndHardReload();
break;
}
}
});