Search Params Remover

a browser extension helps you surf without utm_source and fbclid

Co to jest Search Params Remover?

Search Params Remover to rozszerzenie Chrome opracowane przez kong0107, a jego główną funkcją jest „a browser extension helps you surf without utm_source and fbclid”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Search Params Remover

Pobierz pliki rozszerzeń Search Params Remover 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

                        Sick of the trailing "?fbclid=xxx" and "?utm_source=xxx" in the address bar? Try this!
You can also add what you hate in the list within options page.

Open Source:
https://github.com/kong0107/search-params-remover                    

Podstawowe informacje o rozszerzeniu

Nazwa Search Params Remover Search Params Remover
ID gfmcbkcihnobpalkdakmmecajahgnnol
Oficjalny URL https://chromewebstore.google.com/detail/search-params-remover/gfmcbkcihnobpalkdakmmecajahgnnol
Opis a browser extension helps you surf without utm_source and fbclid
Rozmiar pliku 11.73 KB
Liczba instalacji 80
Aktualna Wersja 0.2.3
Ostatnia Aktualizacja 2022-08-25
Data Publikacji 2018-12-05
Ocena 3.50/5 Łącznie 2 Oceny
Deweloper kong0107
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Search Params Remover",
    "version": "0.2.3",
    "description": "a browser extension helps you surf without utm_source and fbclid",
    "author": "kong0107",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "options_page": "options.html"
}