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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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:\/\/*\/*?*"
    ]
}