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はRudie Dirkxによって開発されたChromeの拡張機能で、その主な機能は「Strips annoying query parameters from URLs. It does utm_* (google), atl_* (atlassian) and ref_ (imdb). More tokens are customizable.」です。

拡張機能のスクリーンショット

screenshot

Query stripper拡張機能のCRXファイルをダウンロード

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
Eメール [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"
}