feat: strip Yahoo/Verizon Media GUCE consent-redirect params

guccounter/guce_referrer/guce_referrer_sig -- confirmed live on a
yahoo.com news article reached via Google News. Not caught by the
existing tracker list; these are Yahoo's own GUCE consent-flow
redirect params, distinct from Yandex's yclid already covered.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-18 07:01:32 +02:00
co-authored by Claude Sonnet 5
parent c642f7e9a3
commit e267365def
@@ -1,7 +1,7 @@
// ==UserScript==
// @name Clean URL Tracking Params
// @namespace https://devops.cloudhost.es/Malin/userscripts
// @version 1.0.0
// @version 1.1.0
// @description Strips known ad/tracking query parameters (fbclid, gclid, utm_*, msclkid, ttclid, etc.) from the URL bar on load and on SPA navigation, without reloading the page. No network requests of any kind.
// @author Malin
// @match *://*/*
@@ -70,6 +70,9 @@
'oly_enc_id', 'oly_anon_id',
// Generic share-tracking token used by YouTube, Spotify, and others
'si',
// Yahoo / Verizon Media (GUCE consent-redirect flow -- confirmed live
// on yahoo.com news articles reached via Google News, 2026-08-18)
'guccounter', 'guce_referrer', 'guce_referrer_sig',
]);
function cleanUrl(rawUrl) {