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
官方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",
        ""
    ]
}