@cliqz/autoconsent
Version:
This is a library of rules for navigating through common consent popups on the web. These rules can be run in a Firefox webextension, or in a puppeteer orchestrated headless browser. Using these rules, opt-in and opt-out options can be selected automatica
18 lines • 495 B
JSON
{
"name": "faktor.io",
"detectCmp": [{ "exists": "#cmp-faktor-io" }],
"frame": "https://cw.choice.faktor.io/",
"detectPopup": [{ "exists": "body", "frame": true }],
"optOut": [
{ "click": "#privacySettingsButton", "frame": true },
{ "wait": 100 },
{
"click": ".mat-slide-toggle-input:checked",
"frame": true,
"all": true
},
{ "wait": 100 },
{ "click": "#exitButton", "frame": true }
],
"optIn": [{ "click": "#acceptAll", "frame": true }]
}