UTM Eraser

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

UTM Eraserคืออะไร?

UTM Eraser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nick และคุณลักษณะหลักของมันคือ "Clean tracking query parameters from URLs, such as utm, fbclid, gclid, etc."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย UTM Eraser

ดาวน์โหลดไฟล์ส่วนขยาย UTM Eraser ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        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
}