Query stripper

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

Query stripper là gì?

Query stripper là một tiện ích mở rộng Chrome được phát triển bởi Rudie Dirkx, và tính năng chính của nó là "Strips annoying query parameters from URLs. It does utm_* (google), atl_* (atlassian) and ref_ (imdb). More tokens are customizable.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Query stripper

Tải xuống các tệp mở rộng Query stripper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Query stripper Query stripper
ID ccemjnmiieofdhbjbbidpkjcfimakdio
URL Chính Thức https://chromewebstore.google.com/detail/query-stripper/ccemjnmiieofdhbjbbidpkjcfimakdio
Mô tả Strips annoying query parameters from URLs. It does utm_* (google), atl_* (atlassian) and ref_ (imdb). More tokens are customizable.
Kích Thước Tệp 8.39 KB
Số Lần Cài Đặt 54
Phiên Bản Hiện Tại 1.9
Cập Nhật Lần Cuối 2022-09-24
Ngày Phát Hành 2015-06-24
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Rudie Dirkx
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/rudiedirkx/query-stripper-extension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
}