From 4a39ef436e5d1c4c0082799d832f21de820f7e42 Mon Sep 17 00:00:00 2001 From: wanhose Date: Tue, 5 Oct 2021 10:49:04 +0200 Subject: [PATCH] fix: old references --- docs/README.md | 2 +- manifest.json | 2 +- scripts/background.js | 4 ++-- scripts/popup.js | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/README.md b/docs/README.md index 1bd67ad..a6044cd 100644 --- a/docs/README.md +++ b/docs/README.md @@ -5,7 +5,7 @@ A browser extension that eats cookie consent dialogs. ## Downloads - [Chrome Web Store](https://chrome.google.com/webstore/detail/djcbfpkdhdkaflcigibkbpboflaplabg) -- [Firefox Add-ons](https://addons.mozilla.org/firefox/addon/do-not-consent/) +- [Firefox Add-ons](https://addons.mozilla.org/firefox/addon/cookie-dialog-monster/) ## Compatibility diff --git a/manifest.json b/manifest.json index 4cc6e1d..08d3709 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Cookie Dialog Monster", - "version": "5.0.0", + "version": "5.0.2", "default_locale": "en", "description": "__MSG_appDesc__", "icons": { diff --git a/scripts/background.js b/scripts/background.js index 1143cb4..2d24343 100644 --- a/scripts/background.js +++ b/scripts/background.js @@ -113,7 +113,7 @@ const getCache = (hostname, responseCallback) => { const getClasses = async (responseCallback) => { try { const url = - "https://raw.githubusercontent.com/wanhose/do-not-consent/master/data/classes.txt"; + "https://raw.githubusercontent.com/wanhose/cookie-dialog-monster/master/data/classes.txt"; const response = await fetch(url); const data = await response.text(); @@ -137,7 +137,7 @@ const getClasses = async (responseCallback) => { const getSelectors = async (responseCallback) => { try { const url = - "https://raw.githubusercontent.com/wanhose/do-not-consent/master/data/elements.txt"; + "https://raw.githubusercontent.com/wanhose/cookie-dialog-monster/master/data/elements.txt"; const response = await fetch(url); const data = await response.text(); diff --git a/scripts/popup.js b/scripts/popup.js index 4ae1531..387c088 100644 --- a/scripts/popup.js +++ b/scripts/popup.js @@ -5,7 +5,7 @@ */ const chromeUrl = - "https://chrome.google.com/webstore/detail/do-not-consent/djcbfpkdhdkaflcigibkbpboflaplabg"; + "https://chrome.google.com/webstore/detail/cookie-dialog-monster/djcbfpkdhdkaflcigibkbpboflaplabg"; /** * @constant dispatch @@ -22,7 +22,7 @@ const dispatch = chrome.runtime.sendMessage; */ const firefoxUrl = - "https://addons.mozilla.org/es/firefox/addon/do-not-consent/"; + "https://addons.mozilla.org/es/firefox/addon/cookie-dialog-monster/"; /** * @constant isChromium