Tracking Token Stripper

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

Apa itu Tracking Token Stripper?

Tracking Token Stripper adalah ekstensi Chrome yang dikembangkan oleh Jon Parise, dan fitur utamanya adalah "Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Tracking Token Stripper

Unduh file ekstensi Tracking Token Stripper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Tracking Token Stripper Tracking Token Stripper
ID kcpnkledgcbobhkgimpbmejgockkplob
URL Resmi https://chromewebstore.google.com/detail/tracking-token-stripper/kcpnkledgcbobhkgimpbmejgockkplob
Deskripsi Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings.
Ukuran File 37.58 KB
Jumlah Instalasi 12,605
Versi Saat Ini 2.10
Terakhir Diperbarui 2023-11-28
Tanggal Publikasi 2020-06-26
Penilaian 4.04/5 Total 69 Penilaian
Pengembang Jon Parise
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/jparise/chrome-utm-stripper
Bahasa yang Didukung 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:\/\/*\/*?*"
    ]
}