Query stripper

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

Что такое Query stripper?

Query stripper - это расширение Chrome, разработанное Rudie Dirkx, и его основная функция - "Strips annoying query parameters from URLs. It does utm_* (google), atl_* (atlassian) and ref_ (imdb). More tokens are customizable.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Query stripper

Скачайте файлы расширений Query stripper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.)                    

Основная информация о расширении

Название Query stripper Query stripper
ID ccemjnmiieofdhbjbbidpkjcfimakdio
Официальный URL https://chromewebstore.google.com/detail/query-stripper/ccemjnmiieofdhbjbbidpkjcfimakdio
Описание Strips annoying query parameters from URLs. It does utm_* (google), atl_* (atlassian) and ref_ (imdb). More tokens are customizable.
Размер файла 8.39 KB
Количество установок 54
Текущая Версия 1.9
Последнее Обновление 2022-09-24
Дата публикации 2015-06-24
Рейтинг 4.50/5 Всего 2 оценок
Разработчик Rudie Dirkx
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/rudiedirkx/query-stripper-extension/issues
Поддерживаемые языки 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"
}