fix: old references

This commit is contained in:
wanhose 2021-10-05 10:49:04 +02:00
parent 6cbd64ebd5
commit 4a39ef436e
4 changed files with 6 additions and 6 deletions

View File

@ -5,7 +5,7 @@ A browser extension that eats cookie consent dialogs.
## Downloads ## Downloads
- [Chrome Web Store](https://chrome.google.com/webstore/detail/djcbfpkdhdkaflcigibkbpboflaplabg) - [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 ## Compatibility

View File

@ -1,7 +1,7 @@
{ {
"manifest_version": 2, "manifest_version": 2,
"name": "Cookie Dialog Monster", "name": "Cookie Dialog Monster",
"version": "5.0.0", "version": "5.0.2",
"default_locale": "en", "default_locale": "en",
"description": "__MSG_appDesc__", "description": "__MSG_appDesc__",
"icons": { "icons": {

View File

@ -113,7 +113,7 @@ const getCache = (hostname, responseCallback) => {
const getClasses = async (responseCallback) => { const getClasses = async (responseCallback) => {
try { try {
const url = 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 response = await fetch(url);
const data = await response.text(); const data = await response.text();
@ -137,7 +137,7 @@ const getClasses = async (responseCallback) => {
const getSelectors = async (responseCallback) => { const getSelectors = async (responseCallback) => {
try { try {
const url = 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 response = await fetch(url);
const data = await response.text(); const data = await response.text();

View File

@ -5,7 +5,7 @@
*/ */
const chromeUrl = const chromeUrl =
"https://chrome.google.com/webstore/detail/do-not-consent/djcbfpkdhdkaflcigibkbpboflaplabg"; "https://chrome.google.com/webstore/detail/cookie-dialog-monster/djcbfpkdhdkaflcigibkbpboflaplabg";
/** /**
* @constant dispatch * @constant dispatch
@ -22,7 +22,7 @@ const dispatch = chrome.runtime.sendMessage;
*/ */
const firefoxUrl = const firefoxUrl =
"https://addons.mozilla.org/es/firefox/addon/do-not-consent/"; "https://addons.mozilla.org/es/firefox/addon/cookie-dialog-monster/";
/** /**
* @constant isChromium * @constant isChromium