[TabGuard] "TG" badge on the NoScript icon when the selected tab is anonymized.
This commit is contained in:
parent
3d00084ed5
commit
de872964e9
|
@ -169,7 +169,11 @@ var RequestGuard = (() => {
|
||||||
let iconPath = (await Themes.isVintage()) ? '/img/vintage' : '/img';
|
let iconPath = (await Themes.isVintage()) ? '/img/vintage' : '/img';
|
||||||
browserAction.setIcon({tabId, path: {64: `${iconPath}/ui-${icon}64.png`}});
|
browserAction.setIcon({tabId, path: {64: `${iconPath}/ui-${icon}64.png`}});
|
||||||
})();
|
})();
|
||||||
browserAction.setBadgeText({tabId, text: showBadge ? numBlocked.toString() : ""});
|
|
||||||
|
browserAction.setBadgeText({
|
||||||
|
tabId,
|
||||||
|
text: TabGuard.isAnonymizedTab(tabId) ? "TG" : showBadge ? numBlocked.toString() : ""
|
||||||
|
});
|
||||||
browserAction.setBadgeBackgroundColor({tabId, color: [128, 0, 0, 160]});
|
browserAction.setBadgeBackgroundColor({tabId, color: [128, 0, 0, 160]});
|
||||||
browserAction.setTitle({tabId,
|
browserAction.setTitle({tabId,
|
||||||
title: UA.mobile ? "NoScript" : `${VERSION_LABEL} \n${enforced ?
|
title: UA.mobile ? "NoScript" : `${VERSION_LABEL} \n${enforced ?
|
||||||
|
|
Loading…
Reference in New Issue