UTM Cleaner

Removes 'utm_' parameters from queries

Wat is UTM Cleaner?

UTM Cleaner is een Chrome-extensie ontwikkeld door burik666, en de belangrijkste functie is "Removes 'utm_' parameters from queries".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie UTM Cleaner

Download UTM Cleaner-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam UTM Cleaner UTM Cleaner
ID callcknokdemagicbjfplblmfojambpd
Officiële URL https://chrome.google.com/webstore/detail/utm-cleaner/callcknokdemagicbjfplblmfojambpd
Beschrijving Removes 'utm_' parameters from queries
Bestandsgrootte 45.27 KB
Aantal Installaties 46
Huidige Versie 0.1
Laatst Bijgewerkt 2018-07-14
Publicatiedatum 2018-07-14
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar burik666
Betalingswijze free
Ondersteunde Talen 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",
        ""
    ]
}