From fcd78a5d93769e53a1c1544fec4b26d28852fa5d Mon Sep 17 00:00:00 2001 From: Alvin Crespo Date: Mon, 9 Feb 2026 14:53:25 +0000 Subject: [PATCH 1/2] Add beehiiv tracking parameter (_bhlid) removal Adds a new provider rule to strip the _bhlid query parameter used by beehiiv for newsletter link tracking. Fixes ClearURLs/Addon#507 --- data.min.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/data.min.json b/data.min.json index 867124c..0ad51d7 100644 --- a/data.min.json +++ b/data.min.json @@ -3165,6 +3165,16 @@ "^https?:\\/\\/redirect\\.viglink\\.com\\/.*?u=([^&]+)" ], "forceRedirection": false + }, + "beehiiv": { + "urlPattern": ".", + "completeProvider": false, + "forceRedirection": false, + "rules": ["_bhlid"], + "rawRules": [], + "referralMarketing": [], + "exceptions": [], + "redirections": [] } } } From b771f07f0af5ae5e077203cd9261123221517c38 Mon Sep 17 00:00:00 2001 From: Alvin Crespo Date: Mon, 9 Feb 2026 15:01:10 +0000 Subject: [PATCH 2/2] Keep key/value paris in the same order as other entries in the file for consistency. Also, add global matching per Copilot suggestions. --- data.min.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data.min.json b/data.min.json index 0ad51d7..abb92ea 100644 --- a/data.min.json +++ b/data.min.json @@ -3167,14 +3167,14 @@ "forceRedirection": false }, "beehiiv": { - "urlPattern": ".", + "urlPattern": ".*", "completeProvider": false, - "forceRedirection": false, "rules": ["_bhlid"], - "rawRules": [], "referralMarketing": [], + "rawRules": [], "exceptions": [], - "redirections": [] + "redirections": [], + "forceRedirection": false } } }