Query stripper

Strips annoying query parameters from URLs. It does utm_* (google), atl_* (atlassian) and ref_ (imdb). More tokens are customizable.

Was ist Query stripper?

Query stripper ist eine Chrome-Erweiterung, die von Rudie Dirkx entwickelt wurde, und ihr Hauptmerkmal ist "Strips annoying query parameters from URLs. It does utm_* (google), atl_* (atlassian) and ref_ (imdb). More tokens are customizable.".

Erweiterungsscreenshots

screenshot

Query stripper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Query stripper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Strips annoying query parameters from URLs. It does utm_* (google), atl_* (atlassian) and ref_ (imdb) out of the box. More unwanted tokens/params are configurable on the Options page.

This happens BEFORE page load, so the query params WON'T be sent to the server and your URL is clean for copying.

-It also cleans up the URL after it's changed via History API.- (Not anymore, temporarily.)                    

Grundlegende Informationen zur Erweiterung

Name Query stripper Query stripper
ID ccemjnmiieofdhbjbbidpkjcfimakdio
Offizielle URL https://chromewebstore.google.com/detail/query-stripper/ccemjnmiieofdhbjbbidpkjcfimakdio
Beschreibung Strips annoying query parameters from URLs. It does utm_* (google), atl_* (atlassian) and ref_ (imdb). More tokens are customizable.
Dateigröße 8.39 KB
Installationsanzahl 54
Aktuelle Version 1.9
Letztes Update 2022-09-24
Veröffentlichungsdatum 2015-06-24
Bewertung 4.50/5 Insgesamt 2 Bewertungen
Entwickler Rudie Dirkx
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/rudiedirkx/query-stripper-extension/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Query stripper",
    "version": "1.9",
    "manifest_version": 3,
    "description": "Strips annoying query parameters from URLs. It does utm_* (google), atl_* (atlassian) and ref_ (imdb). More tokens are customizable.",
    "icons": {
        "128": "images\/logo_128.png"
    },
    "permissions": [
        "storage",
        "declarativeNetRequestWithHostAccess"
    ],
    "host_permissions": [
        ""
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "net_rules.json"
            }
        ]
    },
    "background": {
        "service_worker": "querystripper.sw.js"
    },
    "options_page": "options\/options.html"
}