UTM Cleaner

Removes 'utm_' parameters from queries

What is UTM Cleaner?

UTM Cleaner is a Chrome extension developed by burik666, and its main feature is "Removes 'utm_' parameters from queries".

Extension Screenshots

screenshot

Download UTM Cleaner Extension CRX File

Download UTM Cleaner extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name UTM Cleaner UTM Cleaner
ID callcknokdemagicbjfplblmfojambpd
Official URL https://chrome.google.com/webstore/detail/utm-cleaner/callcknokdemagicbjfplblmfojambpd
Description Removes 'utm_' parameters from queries
File Size 45.27 KB
Installation Count 46
Current Version 0.1
Last Updated 2018-07-14
Publish Date 2018-07-14
Rating 5.00/5 Total 1 Ratings
Developer burik666
Payment Type free
Supported Languages 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",
        ""
    ]
}