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