Tracking Token Stripper

Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings.

Qu'est-ce que Tracking Token Stripper ?

Tracking Token Stripper est une extension Chrome développée par Jon Parise, et sa fonction principale est "Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Tracking Token Stripper

Téléchargez les fichiers d'extension Tracking Token Stripper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Tracking Token Stripper Tracking Token Stripper
ID kcpnkledgcbobhkgimpbmejgockkplob
URL Officiel https://chromewebstore.google.com/detail/tracking-token-stripper/kcpnkledgcbobhkgimpbmejgockkplob
Description Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings.
Taille du Fichier 37.58 KB
Nombre d'Installations 12,605
Version Actuelle 2.10
Dernière Mise à Jour 2023-11-28
Date de Publication 2020-06-26
Évaluation 4.04/5 Total 69 Évaluations
Développeur Jon Parise
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/jparise/chrome-utm-stripper
Langues Prises en Charge 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:\/\/*\/*?*"
    ]
}