Tracking Token Stripper

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

ما هو Tracking Token Stripper؟

Tracking Token Stripper هو إضافة Chrome تم تطويرها بواسطة Jon Parise، والميزة الرئيسية لها هي "Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Tracking Token Stripper

قم بتنزيل ملفات الامتداد Tracking Token Stripper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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:\/\/*\/*?*"
    ]
}