* Change the icon.
()
| 178 | * Change the icon. |
| 179 | */ |
| 180 | function changeIcon() { |
| 181 | checkOSAndroid().then((res) => { |
| 182 | if (!res) { |
| 183 | if (storage.globalStatus) { |
| 184 | browser.browserAction.setIcon({path: "img/clearurls_128x128.png"}).catch(handleError); |
| 185 | } else { |
| 186 | browser.browserAction.setIcon({path: "img/clearurls_gray_128x128.png"}).catch(handleError); |
| 187 | } |
| 188 | } |
| 189 | }); |
| 190 | } |
| 191 | |
| 192 | /** |
| 193 | * Get the badged status from the browser storage and put the value |
no test coverage detected