Skip to content

Commit

Permalink
fix: old references
Browse files Browse the repository at this point in the history
  • Loading branch information
wanhose committed Oct 5, 2021
1 parent 6cbd64e commit 4a39ef4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
4 changes: 2 additions & 2 deletions scripts/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand All @@ -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();

Expand Down
4 changes: 2 additions & 2 deletions scripts/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 4a39ef4

Please sign in to comment.