Skip to content

Commit

Permalink
Add support for filterlist exceptions (#2549)
Browse files Browse the repository at this point in the history
* add support for filterlist exceptions

* Fix schema for autoconsent config

* remove skyscanner exceptions
  • Loading branch information
muodov authored Jan 10, 2025
1 parent 1745bcf commit e977bd1
Show file tree
Hide file tree
Showing 2 changed files with 132 additions and 1 deletion.
132 changes: 131 additions & 1 deletion features/autoconsent.json
Original file line number Diff line number Diff line change
Expand Up @@ -625,6 +625,136 @@
}
],
"settings": {
"disabledCMPs": ["healthline-media"]
"disabledCMPs": ["healthline-media"],
"filterlistExceptions": [
"google.ae",
"google.at",
"google.be",
"google.bg",
"google.by",
"google.ca",
"google.ch",
"google.cl",
"google.co.id",
"google.co.il",
"google.co.in",
"google.co.jp",
"google.co.ke",
"google.co.kr",
"google.co.nz",
"google.co.th",
"google.co.uk",
"google.co.ve",
"google.co.za",
"google.com",
"google.com.ar",
"google.com.au",
"google.com.br",
"google.com.co",
"google.com.ec",
"google.com.eg",
"google.com.hk",
"google.com.mx",
"google.com.my",
"google.com.pe",
"google.com.ph",
"google.com.pk",
"google.com.py",
"google.com.sa",
"google.com.sg",
"google.com.tr",
"google.com.tw",
"google.com.ua",
"google.com.uy",
"google.com.vn",
"google.cz",
"google.de",
"google.dk",
"google.dz",
"google.ee",
"google.es",
"google.fi",
"google.fr",
"google.gr",
"google.hr",
"google.hu",
"google.ie",
"google.it",
"google.lt",
"google.lv",
"google.nl",
"google.no",
"google.pl",
"google.pt",
"google.ro",
"google.rs",
"google.ru",
"google.se",
"google.sk",
"google.ae",
"google.at",
"google.be",
"google.bg",
"google.by",
"google.ca",
"google.ch",
"google.cl",
"google.co.id",
"google.co.il",
"google.co.in",
"google.co.jp",
"google.co.ke",
"google.co.kr",
"google.co.nz",
"google.co.th",
"google.co.uk",
"google.co.ve",
"google.co.za",
"google.com",
"google.com.ar",
"google.com.au",
"google.com.br",
"google.com.co",
"google.com.ec",
"google.com.eg",
"google.com.hk",
"google.com.mx",
"google.com.my",
"google.com.pe",
"google.com.ph",
"google.com.pk",
"google.com.py",
"google.com.sa",
"google.com.sg",
"google.com.tr",
"google.com.tw",
"google.com.ua",
"google.com.uy",
"google.com.vn",
"google.cz",
"google.de",
"google.dk",
"google.dz",
"google.ee",
"google.es",
"google.fi",
"google.fr",
"google.gr",
"google.hr",
"google.hu",
"google.ie",
"google.it",
"google.lt",
"google.lv",
"google.nl",
"google.no",
"google.pl",
"google.pt",
"google.ro",
"google.rs",
"google.ru",
"google.se",
"google.sk"
]
}
}
1 change: 1 addition & 0 deletions schema/features/autoconsent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { Feature } from '../feature';
export type AutoconsentFeature<VersionType> = Feature<
{
disabledCMPs: string[] | undefined;
filterlistExceptions: string[];
enableIfMainWorldIsSupported:
| {
state: 'enabled' | 'disabled';
Expand Down

0 comments on commit e977bd1

Please sign in to comment.