tech-int-cheat icon indicating copy to clipboard operation
tech-int-cheat copied to clipboard

auto update extension

Open CakeCrusher opened this issue 2 years ago • 0 comments

use this https://stackoverflow.com/questions/15775187/how-to-cause-a-chrome-app-to-update-as-soon-as-possible

chrome.runtime.onUpdateAvailable.addListener(function(details) {
  console.log("updating to version " + details.version);
  chrome.runtime.reload();
});

CakeCrusher avatar Apr 28 '23 05:04 CakeCrusher