UTM Cleaner

Removes 'utm_' parameters from queries

UTM Cleanerคืออะไร?

UTM Cleaner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย burik666 และคุณลักษณะหลักของมันคือ "Removes 'utm_' parameters from queries"

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

screenshot

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

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

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

                        Urchin Tracking Module (UTM) parameters are five variants of URL parameters used by marketers to track the effectiveness of online marketing campaigns across traffic sources and publishing media. (from wiki)

This extension removes 'utm_' parameters from queries.

For example:
Request https://example.org/?id=1&utm_source=email_notifications
will be redirected to
https://example.org/?id=1                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ UTM Cleaner UTM Cleaner
ID callcknokdemagicbjfplblmfojambpd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/utm-cleaner/callcknokdemagicbjfplblmfojambpd
คำอธิบาย Removes 'utm_' parameters from queries
ขนาดไฟล์ 45.27 KB
จำนวนการติดตั้ง 46
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2018-07-14
วันที่เผยแพร่ 2018-07-14
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา burik666
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UTM Cleaner",
    "version": "0.1",
    "description": "Removes 'utm_' parameters from queries",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "tabs",
        ""
    ]
}