Add png icons to support googles webextension api

This commit is contained in:
Kevin Röbert
2019-04-08 09:52:23 +02:00
parent 304cbe2e6b
commit 0a948968b3
14 changed files with 25 additions and 27 deletions

View File

@@ -178,9 +178,9 @@ function changeIcon()
{
if(!checkOSAndroid()) {
if(storage.globalStatus){
browser.browserAction.setIcon({path: "img/clearurls.svg"});
browser.browserAction.setIcon({path: "img/clearurls_128x128.png"});
} else{
browser.browserAction.setIcon({path: "img/clearurls_gray.svg"});
browser.browserAction.setIcon({path: "img/clearurls_gray_128x128.png"});
}
}
}