Tracking Token Stripper

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

Co je Tracking Token Stripper?

Tracking Token Stripper je rozšíření Chrome vyvinuté Jon Parise, a jeho hlavní funkcí je „Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Tracking Token Stripper

Stáhněte si soubory rozšíření Tracking Token Stripper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Tracking Token Stripper Tracking Token Stripper
ID kcpnkledgcbobhkgimpbmejgockkplob
Oficiální URL https://chromewebstore.google.com/detail/tracking-token-stripper/kcpnkledgcbobhkgimpbmejgockkplob
Popis Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings.
Velikost souboru 37.58 KB
Počet instalací 12,605
Aktuální Verze 2.10
Poslední Aktualizace 2023-11-28
Datum Vydání 2020-06-26
Hodnocení 4.04/5 Celkem 69 Hodnocení
Vývojář Jon Parise
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/jparise/chrome-utm-stripper
Podporované Jazyky 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:\/\/*\/*?*"
    ]
}