UTM Cleaner

Removes 'utm_' parameters from queries

什麼是UTM Cleaner?

UTM Cleaner是由burik666開發的Chrome擴展程式,該擴展的主要功能是“Removes 'utm_' parameters from queries”。

擴展截圖

screenshot

下載UTM Cleaner擴展crx文件

下載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
官方網址 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",
        ""
    ]
}