UTM Eraser

Clean tracking query parameters from URLs, such as utm, fbclid, gclid, etc.

UTM Eraser란 무엇입니까?

UTM Eraser은(는) Nick에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Clean tracking query parameters from URLs, such as utm, fbclid, gclid, etc."입니다.

확장 프로그램 스크린샷

screenshot

UTM Eraser 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        An extension to clean tracking request parameters from URLs.

Please note that the parameters are removed from the URL after the page is loaded, so unfortunately this extension is not tracking protection. However, a clean URL is more convenient for sharing a link.

List of query parameters removed by the current version of the extension:
- "utm_campaign"
- "utm_content"
- "utm_id"
- "utm_source"
- "utm_referrer"
- "utm_medium"
- "utm_term"
- "utm_name"
- "fbclid"
- "gclid"
- "ysclid"                    

확장 프로그램 기본 정보

이름 UTM Eraser UTM Eraser
ID cepijkcnhhbjgiofhdhbomcgdmfjbbhb
공식 URL https://chromewebstore.google.com/detail/utm-eraser/cepijkcnhhbjgiofhdhbomcgdmfjbbhb
설명 Clean tracking query parameters from URLs, such as utm, fbclid, gclid, etc.
파일 크기 24.54 KB
설치 횟수 41
현재 버전 1.0.2
최근 업데이트 2023-05-13
출시 날짜 2022-10-21
평점 5.00/5 총 1 개의 평점
개발자 Nick
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Psychosynthesis/Eraser
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UTM Eraser",
    "version": "1.0.2",
    "description": "Clean tracking query parameters from URLs, such as utm, fbclid, gclid, etc.",
    "homepage_url": "https:\/\/github.com\/Psychosynthesis\/Eraser",
    "icons": {
        "48": "icons\/favicon.png",
        "96": "icons\/faviconMiddle.png",
        "128": "icons\/faviconBig.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "browser_style": true,
        "default_icon": "icons\/panelicon.png",
        "default_title": "Eraser",
        "default_popup": "panel\/panelMenu.html"
    },
    "permissions": [
        "storage"
    ],
    "manifest_version": 3
}