Make set
refer to correct settings
This commit is contained in:
parent
550cdc7550
commit
54ec8714ee
1 changed files with 3 additions and 3 deletions
|
@ -14,9 +14,9 @@ class BrowserIcon {
|
||||||
return ((parameters) ? Object.assign(option, parameters) : option);
|
return ((parameters) ? Object.assign(option, parameters) : option);
|
||||||
}
|
}
|
||||||
|
|
||||||
(options.Icon) ? chrome.action.setIcon(format({"path": path}, parameters)) : null;
|
(options.Icon) ? chrome.action.setIcon(format({"path": options.Icon}, parameters)) : null;
|
||||||
(options.BadgeText) ? chrome.action.setBadgeText(format({"text": String(options.text).trim()}, parameters)) : null;
|
(options.BadgeText) ? chrome.action.setBadgeText(format({"text": String(options.BadgeText).trim()}, parameters)) : null;
|
||||||
(options.BadgeBackgroundColor) ? chrome.action.setBadgeBackgroundColor(format({"color": color}, parameters)) : null;
|
(options.BadgeBackgroundColor) ? chrome.action.setBadgeBackgroundColor(format({"color": options.BadgeBackgroundColor}, parameters)) : null;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue