Tracking Token Stripper
Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings.
Was ist Tracking Token Stripper?
Tracking Token Stripper ist eine Chrome-Erweiterung, die von Jon Parise entwickelt wurde, und ihr Hauptmerkmal ist "Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings.".
Erweiterungsscreenshots
Tracking Token Stripper-Erweiterungs-CRX-Datei herunterladen
Laden Sie Tracking Token Stripper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
FeedBurner and similar links often include Google Analytics tracking tokens in the URL's query string. These start with the prefix "utm_" (Urchin Tracking Monitor). Facebook and Google also add click tracking identifiers to outbound URLs ("fblid" and "gclid"). They are used by the target site to report back statistics regarding the origin of the inbound link. This extension removes these tokens from the URL before the destination site is visited, resulting in a more private browsing experience with a cleaner URL that's more suitable for copying into an email, instant message, etc.
Grundlegende Informationen zur Erweiterung
Name | Tracking Token Stripper |
ID | kcpnkledgcbobhkgimpbmejgockkplob |
Offizielle URL | https://chromewebstore.google.com/detail/tracking-token-stripper/kcpnkledgcbobhkgimpbmejgockkplob |
Beschreibung | Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings. |
Dateigröße | 37.58 KB |
Installationsanzahl | 12,605 |
Aktuelle Version | 2.10 |
Letztes Update | 2023-11-28 |
Veröffentlichungsdatum | 2020-06-26 |
Bewertung | 4.04/5 Insgesamt 69 Bewertungen |
Entwickler | Jon Parise |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/jparise/chrome-utm-stripper |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tracking Token Stripper", "version": "2.10", "manifest_version": 2, "author": "Jon Parise", "description": "Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings.", "homepage_url": "https:\/\/github.com\/jparise\/chrome-utm-stripper", "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "webRequest", "webRequestBlocking", "https:\/\/*\/*?*", "http:\/\/*\/*?*" ] } |