UTM Cleaner

Removes 'utm_' parameters from queries

Cos'è UTM Cleaner?

UTM Cleaner è un'estensione di Chrome sviluppata da burik666, e la sua funzione principale è "Removes 'utm_' parameters from queries".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione UTM Cleaner

Scarica i file di estensione UTM Cleaner in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome UTM Cleaner UTM Cleaner
ID callcknokdemagicbjfplblmfojambpd
URL Ufficiale https://chrome.google.com/webstore/detail/utm-cleaner/callcknokdemagicbjfplblmfojambpd
Descrizione Removes 'utm_' parameters from queries
Dimensione del File 45.27 KB
Conteggio Installazioni 46
Versione Corrente 0.1
Ultimo Aggiornamento 2018-07-14
Data di Pubblicazione 2018-07-14
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore burik666
Tipo di Pagamento free
Lingue Supportate 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",
        ""
    ]
}