@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
16 lines • 513 B
JSON
{
"name": "Clarip",
"detectCmp": [
{ "eval": "typeof window.claripCookieManagerLink === 'string'" }
],
"detectPopup": [{ "visible": ".cookie-consent-banner-content" }],
"frame": "https://cdn.clarip.com/endurance/cookieconsent/index.html",
"optOut": [
{
"eval": "showModal(document.querySelector('.clarip-cookie-manager')) || true"
},
{ "click": "#opt-out-all", "frame": true },
{ "click": "#save-cookie-options", "frame": true }
],
"optIn": [{ "click": "#cookie-cta" }]
}