forked from duckduckgo/autoconsent
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DES-1065: add support of Instagram & Messenger using Consent-O-Matic (#1
) * DES-1065: fix params sent to "SAVE_CONSENT" actions * DES-1065: add support of instagram * DES-1065: add support of Facebook * DES-1065: update dist * DES-1065: add support for nike.com * DES-1065: add support for aliexpress.com * Update rules/autoconsent/aliexpress-com.json Co-authored-by: Vladimir Zhuravlev <private.face@gmail.com> --------- Co-authored-by: Vladimir Zhuravlev <private.face@gmail.com>
- Loading branch information
1 parent
31dde1a
commit 8a6ead1
Showing
9 changed files
with
34 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"name": "aliexpress.com", | ||
"runContext": { | ||
"urlPattern": "^https://([a-z0-9-]+\\.)?aliexpress\\.com/" | ||
}, | ||
"cosmetic": true, | ||
"prehideSelectors": [".global-gdpr-container"], | ||
"detectCmp": [{ "exists": ".global-gdpr-container" }], | ||
"detectPopup": [{ "visible": ".global-gdpr-container" }], | ||
"optIn": [{ "click": "div.global-gdpr-container div.global-gdpr-btn-wrap button[data-role=\"gdpr-accept\"]" }], | ||
"optOut": [{ "click": "div.global-gdpr-container div.global-gdpr-btn-wrap button[data-role=\"gdpr-reject\"]" }] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"name": "nike.com", | ||
"runContext": { | ||
"urlPattern": "^https://www\\.nike\\.com/" | ||
}, | ||
"cosmetic": true, | ||
"prehideSelectors": ["div.cookie-dialog-base"], | ||
"detectCmp": [{ "exists": "div.cookie-dialog-base" }], | ||
"detectPopup": [{ "visible": "div.cookie-dialog-base" }], | ||
"optIn": [{ "click": "div.cookie-dialog-base button.dialog-actions-accept-btn" }], | ||
"optOut": [{ "click": "div.cookie-dialog-base button.dialog-actions-decline-btn" }] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters