Skip to content

Instantly share code, notes, and snippets.

View obiwanpelosi's full-sized avatar

Obiwan Pelosi obiwanpelosi

View GitHub Profile
chrome.runtime.onUpdateAvailable.addListener(function(details) {
console.log("updating to version " + details.version);
chrome.runtime.reload();
});
chrome.runtime.requestUpdateCheck(function(status) {
if (status == "update_available") {
console.log("update pending...");
} else if (status == "no_update") {
console.log("no update found");