We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 085bff0 commit df33e6eCopy full SHA for df33e6e
js/background.js
@@ -415,4 +415,7 @@ dpContext();
415
if ((!optionExists("version") || localStorage["version"] != version) && localStorage["showUpdateNotifications"] == 'true') {
416
// chrome.tabs.create({ url: chrome.extension.getURL('updated.html'), selected: false }); // very minor update
417
localStorage["version"] = version;
418
-}
+}
419
+chrome.runtime.onUpdateAvailable.addListener(function (details) {
420
+ // an update is available, but wait until user restarts their browser as to not disrupt their current session and cloaked tabs.
421
+});
0 commit comments