Tracking Token Stripper

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

O que é Tracking Token Stripper?

Tracking Token Stripper é uma extensão do Chrome desenvolvida por Jon Parise, e sua principal característica é "Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Tracking Token Stripper

Baixe arquivos de extensão Tracking Token Stripper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Tracking Token Stripper Tracking Token Stripper
ID kcpnkledgcbobhkgimpbmejgockkplob
URL Oficial https://chromewebstore.google.com/detail/tracking-token-stripper/kcpnkledgcbobhkgimpbmejgockkplob
Descrição Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings.
Tamanho do Arquivo 37.58 KB
Contagem de Instalações 12,605
Versão Atual 2.10
Última Atualização 2023-11-28
Data de Publicação 2020-06-26
Classificação 4.04/5 Total de 69 Avaliações
Desenvolvedor Jon Parise
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/jparise/chrome-utm-stripper
Idiomas Suportados 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:\/\/*\/*?*"
    ]
}