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, }); }