@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
31 lines (30 loc) • 557 B
JSON
{
"manifest_version": 2,
"name": "Autoconsent Test",
"version": "0.1",
"background": {
"scripts": [
"test/background.bundle.js"
]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["test/content.bundle.js"],
"all_frames": true
}
],
"sidebar_action": {
"default_title": "Autoconsent",
"default_panel": "test/sidebar.html",
"open_at_install": true
},
"permissions": [
"<all_urls>",
"cookies",
"tabs",
"storage",
"unlimitedStorage",
"webNavigation"
]
}