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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Tracking Token Stripper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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:\/\/*\/*?*"
    ]
}