Update badge color and copy

This commit is contained in:
Lesley Norton
2021-10-25 14:28:55 -05:00
parent 82e8643a4f
commit d697b42a28
+3 -2
View File
@@ -11,8 +11,9 @@ const badge = {
if (MAJOR_VERSIONS.indexOf(extensionInfo.version) > -1 &&
storage.browserActionBadgesClicked.indexOf(extensionInfo.version) < 0) {
browser.browserAction.setBadgeBackgroundColor({ color: "rgba(0,217,0,255)" });
browser.browserAction.setBadgeText({ text: "NEW" });
browser.browserAction.setBadgeBackgroundColor({ color: "rgb(255, 79, 94)" });
browser.browserAction.setBadgeText({ text: "!" });
browser.browserAction.setBadgeTextColor({ color: "rgb(255, 255, 255)" });
}
}
};