diff --git a/manifest.json b/manifest.json index 78da83a..a026079 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "HaramBlur", "description": "Protect your privacy and uphold Islamic values by auto detecting & blurring images and videos of unwanted or impermissible content.", - "version": "0.2.5", + "version": "0.2.6", "permissions": ["storage", "offscreen","contextMenus"], "author": "md.alganzory@gmail.com", "action": { diff --git a/src/background.js b/src/background.js index 8c87609..abecc09 100644 --- a/src/background.js +++ b/src/background.js @@ -112,14 +112,14 @@ chrome.runtime.onInstalled.addListener(function (details) { url: "https://onboard.haramblur.com/", }); } else if (details?.reason === "update") { - const currentVersion = chrome.runtime.getManifest().version; - if (currentVersion == "0.2.4" || currentVersion == "0.2.5") return; // no need to show update page for this version - const previousVersion = details.previousVersion; - if (currentVersion != previousVersion) { - chrome.tabs.create({ - url: "https://update.haramblur.com/", - }); - } + // const currentVersion = chrome.runtime.getManifest().version; + // if (currentVersion == "0.2.4" || currentVersion == "0.2.5") return; // no need to show update page for this version + // const previousVersion = details.previousVersion; + // if (currentVersion != previousVersion) { + // chrome.tabs.create({ + // url: "https://update.haramblur.com/", + // }); + // } } });