diff --git a/manifest.json b/manifest.json index ae91df2..d0116a6 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "HaramBlur", "description": "Protect your privacy and uphold Islamic values by auto detecting & blurring images and videos of unwanted or impermissible content.", - "version": "0.1.0", + "version": "0.1.1", "permissions": ["storage", "contextMenus", "*://*/*"], "author": "md.alganzory@gmail.com", "browser_action": { diff --git a/src/background.js b/src/background.js index 2dd73b6..0e3d38a 100644 --- a/src/background.js +++ b/src/background.js @@ -102,13 +102,13 @@ browser.runtime.onInstalled.addListener(function (details) { url: "https://onboard.haramblur.com/", }); } else if (details?.reason === "update") { - const currentVersion = chrome.runtime.getManifest().version; - const previousVersion = details.previousVersion; - if (currentVersion != previousVersion) { - chrome.tabs.create({ - url: "https://update.haramblur.com/", - }); - } + // const currentVersion = chrome.runtime.getManifest().version; + // const previousVersion = details.previousVersion; + // // if (currentVersion != previousVersion) { + // // chrome.tabs.create({ + // // url: "https://update.haramblur.com/", + // // }); + // // } } });