fix: old references
This commit is contained in:
parent
6cbd64ebd5
commit
4a39ef436e
@ -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
|
||||
|
||||
|
@ -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": {
|
||||
|
@ -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();
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user