Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Extensions/combined/ryd.background.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/Extensions/combined/ryd.background.js b/Extensions/combined/ryd.background.js
index 944c57a..9e749cf 100644
--- a/Extensions/combined/ryd.background.js
+++ b/Extensions/combined/ryd.background.js
@@ -73,6 +73,18 @@ api.runtime.onMessage.addListener((request, sender, sendResponse) => {
}
});
+api.runtime.onInstalled.addListener((details) => {
+ if (
+ // No need to show changelog if its was a browser update (and not extension update)
+ details.reason === "browser_update" ||
+ // No need to show changelog if developer just reloaded the extension
+ (details.reason === "update" &&
+ details.previousVersion === chrome.runtime.getManifest().version)
+ )
+ return;
+ api.tabs.create({url: api.runtime.getURL("/changelog/3/changelog_3.0.html")});
+})
+
// api.storage.sync.get(['lastShowChangelogVersion'], (details) => {
// if (extConfig.showUpdatePopup === true &&
// details.lastShowChangelogVersion !== chrome.runtime.getManifest().version
@@ -84,6 +96,7 @@ api.runtime.onMessage.addListener((request, sender, sendResponse) => {
// }
// });
+
async function sendVote(videoId, vote) {
api.storage.sync.get(null, async (storageResult) => {
if (!storageResult.userId || !storageResult.registrationConfirmed) {