Tracking Token Stripper

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

Tracking Token Stripper क्या है?

Tracking Token Stripper Jon Parise द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tracking Token Stripper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Tracking Token Stripper Tracking Token Stripper
ID kcpnkledgcbobhkgimpbmejgockkplob
आधिकारिक URL https://chromewebstore.google.com/detail/tracking-token-stripper/kcpnkledgcbobhkgimpbmejgockkplob
विवरण Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings.
फ़ाइल का आकार 37.58 KB
स्थापना संख्या 12,605
वर्तमान संस्करण 2.10
अंतिम अपडेट 2023-11-28
प्रकाशन तिथि 2020-06-26
रेटिंग 4.04/5 कुल 69 रेटिंग्स
डेवलपर Jon Parise
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/jparise/chrome-utm-stripper
समर्थित भाषाएँ 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:\/\/*\/*?*"
    ]
}