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
电子邮箱 [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"
}