Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
feat(consent): auto-refuse tarteaucitron
Browse files Browse the repository at this point in the history
  • Loading branch information
mathkr committed Feb 25, 2020
1 parent 74ed02a commit 96fe21a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.5.0

## Features

- Added support for TarteAuCitron

# 1.4.3

## Bug fixes
Expand All @@ -16,7 +22,7 @@

- Incomplete support of SirData fixed
- Incomplete support of platform behind SeLoger.com (theShield ?) fixed

# 1.4.0

## Features
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Refuse consent to those platforms :
- Cookie Law Info (https://www.cookielawinfo.com/)
- Crownpeak (https://www.crownpeak.com/)
- SirData (https://cmp.sirdata.com/)
- TarteAuCitron (https://opt-out.ferank.eu/)

No more "do you accept ?" !

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author": "Mathieu Kim Robin",
"name": "Never-Consent",
"description": "Never consent to any GDPR consent management platform",
"version": "1.4.3",
"version": "1.5.0",
"icons": {
"16": "assets/16.ico",
"48": "assets/48.ico",
Expand Down
6 changes: 6 additions & 0 deletions src/nc.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@
clearInterval(kick);
}

// tarteaucitron
if (!!tarteaucitron) {
tarteaucitron.userInterface.respondAll(false);
clearInterval(kick);
}

// crownpeak
if (!!window.evidon) {
elClick('.evidon-consent-button-text');
Expand Down

0 comments on commit 96fe21a

Please sign in to comment.