summaryrefslogtreecommitdiffstats
path: root/util.js
blob: 4e210137bcd1577dce26c9b09cd1fd697e00f692 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export function setIcon(tabId, status) {
  const iconMap = {
    wait: "icons/wait.png",
    ready: "icons/ready.png",
    saved: "icons/saved.png",
  };

  const path = iconMap[status] || iconMap.wait;

  browser.browserAction.setIcon({
    tabId,
    path,
  });
}