Improve icon display

This commit is contained in:
buzz-lightsnack-2007 2024-05-06 13:41:07 +08:00
parent a723791d1b
commit fa97743fc8

View file

@ -13,8 +13,12 @@ class IconIndicator {
BrowserIcon.enable();
// Enable icon changes if enabled within the settings.
(Tabs.query(null, 0)).then((TAB) => {
// Get the URL of the tab.
const LOCATION = TAB.url;
global.read([`settings`, `general`, `showApplicable`]).then((PREFERENCE) => {(PREFERENCE)
? fetch(CONFIG).then((response) => response.json()).then((jsonData) => {
? fetch(CONFIG).then((response) => response.json()).then(async (jsonData) => {
const ICON_COLORS = jsonData;
/*
@ -45,11 +49,6 @@ class IconIndicator {
});
}
(Tabs.query(null, 0)).then(async (TAB) => {
// Get the URL of the tab.
let LOCATION = TAB.url;
BrowserIcon.set({
"BadgeText": await (new texts(`extensionIcon_website_loading`)).symbol,
"BadgeBackgroundColor": ICON_COLORS[`loading`]
@ -58,12 +57,11 @@ class IconIndicator {
showDetails(LOCATION, TAB.id);
observe((changes) => {
showDetails(LOCATION, TAB.id);
})
});
})
: false;
})
})
}
/*
@ -75,10 +73,12 @@ class IconIndicator {
// Enable icon changes if enabled within the settings.
global.read([`settings`, `general`, `showApplicable`]).then((PREFERENCE) => {
(Tabs.query(null, 0)).then(async (TAB) => {
BrowserIcon.set({
(PREFERENCE)
? BrowserIcon.set({
"BadgeText": await (new texts(`extensionIcon_website_unsupported`)).symbol,
"BadgeBackgroundColor": await fetch(CONFIG).then((response) => response.json()).then((jsonData) => {return (jsonData[`N/A`]);})
}, {"tabId": TAB.id});
"BadgeBackgroundColor": await fetch(CONFIG).then((response) => response.json()).then((jsonData) => {return (jsonData[`N/A`]);})},
{"tabId": TAB.id})
: false;
})
})
}