This repository has been archived on 2022-11-26. You can view files and clone it, but cannot push or open issues or pull requests.

6 lines
243 B
JavaScript
Raw Normal View History

chrome.storage.sync.get(['choise'], function(items) {
var choise=items['choise'];
if(choise == undefined) choise = true;
if(choise) chrome.browserAction.setBadgeText({text: "on"});
else chrome.browserAction.setBadgeText({text: "off"});
});