Search Params Remover

a browser extension helps you surf without utm_source and fbclid

什么是Search Params Remover?

Search Params Remover是由kong0107开发的Chrome扩展程序,该扩展的主要功能是“a browser extension helps you surf without utm_source and fbclid”。

扩展截图

screenshot

下载Search Params Remover扩展crx文件

下载Search Params Remover扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Sick of the trailing "?fbclid=xxx" and "?utm_source=xxx" in the address bar? Try this!
You can also add what you hate in the list within options page.

Open Source:
https://github.com/kong0107/search-params-remover                    

扩展基本信息

名称 Search Params Remover Search Params Remover
ID gfmcbkcihnobpalkdakmmecajahgnnol
官方URL https://chromewebstore.google.com/detail/search-params-remover/gfmcbkcihnobpalkdakmmecajahgnnol
简介 a browser extension helps you surf without utm_source and fbclid
文件大小 11.73 KB
安装次数 80
当前版本 0.2.3
更新时间 2022-08-25
上架时间 2018-12-05
评分 3.50/5 共2次评分
开发者 kong0107
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Search Params Remover",
    "version": "0.2.3",
    "description": "a browser extension helps you surf without utm_source and fbclid",
    "author": "kong0107",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "options_page": "options.html"
}