forked from aminomancer/uc.css.js
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathupdateBannerLabels.uc.js
More file actions
70 lines (62 loc) · 2.71 KB
/
updateBannerLabels.uc.js
File metadata and controls
70 lines (62 loc) · 2.71 KB
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
// ==UserScript==
// @name Concise Update Banner Labels
// @version 1.2
// @author aminomancer
// @homepage https://github.com/aminomancer
// @description This script simply changes the update banners in the hamburger button app menu to make the strings a bit more concise. Instead of "Update available — download now" it will show "Download Nightly update" for example.
// ==/UserScript==
(function () {
// wait for {param} milliseconds in async function
function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
class UpdateBannerLabelProvider {
constructor() {}
get appName() {
if (!this._appName) {
this._appName = gBrandBundle.GetStringFromName("brandShorterName");
let words = this._appName.split(" ");
if (words.length > 1) this._appName = "Firefox";
}
return this._appName;
}
get attributes() {
return (
this._attributes ||
(this._attributes = {
"update-available": `Download ${this.appName} update`,
"update-manual": `Download ${this.appName} update`,
"update-downloading": `Downloading ${this.appName} update`,
"update-restart": `Restart to update ${this.appName}`,
"update-unsupported": `Unable to update: system incompatible`,
})
);
}
}
async function init() {
window.gUpdateBanners = new UpdateBannerLabelProvider();
PanelUI._initialized || PanelUI.init(shouldSuppressPopupNotifications);
PanelUI._showBannerItem = function _showBannerItem(notification) {
if (!this._panelBannerItem) {
this._panelBannerItem = this.mainView.querySelector(".panel-banner-item");
}
let label = gUpdateBanners.attributes[notification.id];
if (!label) return; // Ignore items we don't know about.
this._panelBannerItem.setAttribute("notificationid", notification.id);
this._panelBannerItem.setAttribute("label", label);
this._panelBannerItem.hidden = false;
this._panelBannerItem.notification = notification;
};
}
if (gBrowserInit.delayedStartupFinished) {
init();
} else {
let delayedListener = (subject, topic) => {
if (topic == "browser-delayed-startup-finished" && subject == window) {
Services.obs.removeObserver(delayedListener, topic);
init();
}
};
Services.obs.addObserver(delayedListener, "browser-delayed-startup-finished");
}
})();