Browse Source

Tweaked badge background color

master
Said Achmiz 6 years ago
parent
commit
a31e72b5a9
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      src/platform/chrome/background.js
  2. 1
    1
      src/platform/firefox/background.js

+ 1
- 1
src/platform/chrome/background.js View File

@@ -31,5 +31,5 @@ chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
});

chrome.browserAction.setBadgeBackgroundColor({
color: "#666"
color: "#0071b3"
});

+ 1
- 1
src/platform/firefox/background.js View File

@@ -27,5 +27,5 @@ chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
});

chrome.browserAction.setBadgeBackgroundColor({
color: "#666"
color: "#0071b3"
});

Loading…
Cancel
Save