rename the source preference for icon display
This commit is contained in:
parent
4d1958d13f
commit
a723791d1b
1 changed files with 3 additions and 4 deletions
|
@ -10,10 +10,10 @@ class IconIndicator {
|
||||||
Indicate that the website is supported through icon change.
|
Indicate that the website is supported through icon change.
|
||||||
*/
|
*/
|
||||||
static enable() {
|
static enable() {
|
||||||
BrowserIcon.enable();
|
BrowserIcon.enable();
|
||||||
|
|
||||||
// Enable icon changes if enabled within the settings.
|
// Enable icon changes if enabled within the settings.
|
||||||
global.read([`settings`, `behavior`, `showApplicable`]).then(async (PREFERENCE) => {(PREFERENCE)
|
global.read([`settings`, `general`, `showApplicable`]).then((PREFERENCE) => {(PREFERENCE)
|
||||||
? fetch(CONFIG).then((response) => response.json()).then((jsonData) => {
|
? fetch(CONFIG).then((response) => response.json()).then((jsonData) => {
|
||||||
const ICON_COLORS = jsonData;
|
const ICON_COLORS = jsonData;
|
||||||
|
|
||||||
|
@ -35,7 +35,6 @@ class IconIndicator {
|
||||||
|
|
||||||
if (STATUS[`done`]) {
|
if (STATUS[`done`]) {
|
||||||
global.read([`sites`, LOCATION, `analysis`, `Rating`, `Trust`]).then(async (RESULTS) => {
|
global.read([`sites`, LOCATION, `analysis`, `Rating`, `Trust`]).then(async (RESULTS) => {
|
||||||
((typeof RESULTS).includes(`str`)) ? RESULTS.trim() : false;
|
|
||||||
(RESULTS) ? BrowserIcon.set({
|
(RESULTS) ? BrowserIcon.set({
|
||||||
"BadgeText": await (new texts(`extensionIcon_product_`.concat(RESULTS))).symbol,
|
"BadgeText": await (new texts(`extensionIcon_product_`.concat(RESULTS))).symbol,
|
||||||
"BadgeBackgroundColor": ICON_COLORS[`product_`.concat(RESULTS)]
|
"BadgeBackgroundColor": ICON_COLORS[`product_`.concat(RESULTS)]
|
||||||
|
@ -74,7 +73,7 @@ class IconIndicator {
|
||||||
BrowserIcon.disable();
|
BrowserIcon.disable();
|
||||||
|
|
||||||
// Enable icon changes if enabled within the settings.
|
// Enable icon changes if enabled within the settings.
|
||||||
global.read([`settings`, `behavior`, `showApplicable`]).then((PREFERENCE) => {
|
global.read([`settings`, `general`, `showApplicable`]).then((PREFERENCE) => {
|
||||||
(Tabs.query(null, 0)).then(async (TAB) => {
|
(Tabs.query(null, 0)).then(async (TAB) => {
|
||||||
BrowserIcon.set({
|
BrowserIcon.set({
|
||||||
"BadgeText": await (new texts(`extensionIcon_website_unsupported`)).symbol,
|
"BadgeText": await (new texts(`extensionIcon_website_unsupported`)).symbol,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue