tag-youre-it/background.js
2015-09-25 17:10:39 +02:00

16 lines
345 B
JavaScript

var pluginEnabled = true;
function updateIcon () {
var selectedIcon;
if (pluginEnabled) {
chrome.browserAction.setIcon({path:'icon2.png'});
pluginEnabled = false;
} else {
chrome.browserAction.setIcon({path:'icon1.png'});
pluginEnabled = true;
}
}
chrome.browserAction.onClicked.addListener(updateIcon);
updateIcon();