UTM Cleaner

Removes 'utm_' parameters from queries

Co to jest UTM Cleaner?

UTM Cleaner to rozszerzenie Chrome opracowane przez burik666, a jego główną funkcją jest „Removes 'utm_' parameters from queries”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia UTM Cleaner

Pobierz pliki rozszerzeń UTM Cleaner w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa UTM Cleaner UTM Cleaner
ID callcknokdemagicbjfplblmfojambpd
Oficjalny URL https://chrome.google.com/webstore/detail/utm-cleaner/callcknokdemagicbjfplblmfojambpd
Opis Removes 'utm_' parameters from queries
Rozmiar pliku 45.27 KB
Liczba instalacji 46
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2018-07-14
Data Publikacji 2018-07-14
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper burik666
Typ Płatności free
Obsługiwane Języki 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",
        ""
    ]
}