-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Match feature state to feature table (#79)
* Match feature state to feature table * Remove state keys * Fix auto consent * Branch updates * Fix legacy generation * Update gh action node version
- Loading branch information
1 parent
f0dea46
commit 048762b
Showing
20 changed files
with
133 additions
and
68 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"_meta": { | ||
"description": "Rewrite AMP links to safer alternatives.", | ||
"sampleExcludeRecords": { | ||
"domain": "example.com", | ||
"reason": "site breakage" | ||
} | ||
}, | ||
"exceptions": [], | ||
"settings": { | ||
"ampLinkFormats": [ | ||
"^https?:\\/\\/(?:w{3}\\.)?google\\.\\S{2,}\\/amp\\/s\\/(\\S+)$", | ||
"^https?:\\/\\/\\S+ampproject\\.org\\/v\\/s\\/(\\S+)$" | ||
], | ||
"ampKeywords": [ | ||
"=amp", | ||
"amp=", | ||
"&", | ||
"amp&", | ||
"/amp", | ||
"amp/", | ||
".amp", | ||
"amp.", | ||
"%amp", | ||
"amp%", | ||
"_amp", | ||
"amp_", | ||
"?amp" | ||
] | ||
} | ||
} |
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 |
---|---|---|
|
@@ -6,6 +6,5 @@ | |
"reason": "site breakage" | ||
} | ||
}, | ||
"state": "enabled", | ||
"exceptions": [] | ||
} |
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 |
---|---|---|
|
@@ -6,6 +6,5 @@ | |
"reason": "site breakage" | ||
} | ||
}, | ||
"state": "enabled", | ||
"exceptions": [] | ||
} |
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 |
---|---|---|
|
@@ -6,7 +6,6 @@ | |
"reason": "site breakage" | ||
} | ||
}, | ||
"state": "enabled", | ||
"exceptions": [ | ||
{ | ||
"domain": "walgreens.com", | ||
|
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 |
---|---|---|
|
@@ -6,7 +6,6 @@ | |
"reason": "site breakage" | ||
} | ||
}, | ||
"state": "enabled", | ||
"exceptions": [ | ||
{ | ||
"domain": "play.geforcenow.com", | ||
|
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 |
---|---|---|
|
@@ -6,6 +6,5 @@ | |
"reason": "site breakage" | ||
} | ||
}, | ||
"state": "enabled", | ||
"exceptions": [] | ||
} |
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 |
---|---|---|
|
@@ -6,6 +6,5 @@ | |
"reason": "site breakage" | ||
} | ||
}, | ||
"state": "enabled", | ||
"exceptions": [] | ||
} |
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 |
---|---|---|
|
@@ -6,6 +6,5 @@ | |
"reason": "site breakage" | ||
} | ||
}, | ||
"state": "enabled", | ||
"exceptions": [] | ||
} |
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,10 @@ | ||
{ | ||
"_meta": { | ||
"description": "Disable the credentials API on the navigator", | ||
"sampleExcludeRecords": { | ||
"domain": "example.com", | ||
"reason": "site breakage" | ||
} | ||
}, | ||
"exceptions": [] | ||
} |
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 |
---|---|---|
|
@@ -6,6 +6,5 @@ | |
"reason": "site breakage" | ||
} | ||
}, | ||
"state": "enabled", | ||
"exceptions": [] | ||
} |
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 |
---|---|---|
|
@@ -6,7 +6,6 @@ | |
"reason": "site breakage" | ||
} | ||
}, | ||
"state": "enabled", | ||
"settings": { | ||
"excludedCookieDomains": [ | ||
{ | ||
|
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,35 @@ | ||
{ | ||
"_meta": { | ||
"description": "Rewrite links with tracking parameters to safer alternatives.", | ||
"sampleExcludeRecords": { | ||
"domain": "example.com", | ||
"reason": "site breakage" | ||
} | ||
}, | ||
"exceptions": [], | ||
"settings": { | ||
"trackingParameters": [ | ||
"utm_[a-zA-Z]*", | ||
"gclid", | ||
"fbclid", | ||
"fb_action_ids", | ||
"fb_action_types", | ||
"fb_source", | ||
"fb_ref", | ||
"ga_source", | ||
"ga_medium", | ||
"ga_term", | ||
"ga_content", | ||
"ga_campaign", | ||
"ga_place", | ||
"action_object_map", | ||
"action_type_map", | ||
"action_ref_map", | ||
"gs_l", | ||
"mkt_tok", | ||
"hmb_campaign", | ||
"hmb_source", | ||
"hmb_medium" | ||
] | ||
} | ||
} |
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
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
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