UTM Cleaner

Removes 'utm_' parameters from queries

UTM Cleaner là gì?

UTM Cleaner là một tiện ích mở rộng Chrome được phát triển bởi burik666, và tính năng chính của nó là "Removes 'utm_' parameters from queries".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng UTM Cleaner

Tải xuống các tệp mở rộng UTM Cleaner dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên UTM Cleaner UTM Cleaner
ID callcknokdemagicbjfplblmfojambpd
URL Chính Thức https://chrome.google.com/webstore/detail/utm-cleaner/callcknokdemagicbjfplblmfojambpd
Mô tả Removes 'utm_' parameters from queries
Kích Thước Tệp 45.27 KB
Số Lần Cài Đặt 46
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2018-07-14
Ngày Phát Hành 2018-07-14
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển burik666
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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",
        ""
    ]
}