Search Params Remover

a browser extension helps you surf without utm_source and fbclid

What is Search Params Remover?

Search Params Remover is a Chrome extension developed by kong0107, and its main feature is "a browser extension helps you surf without utm_source and fbclid".

Extension Screenshots

screenshot

Download Search Params Remover Extension CRX File

Download Search Params Remover extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Search Params Remover Search Params Remover
ID gfmcbkcihnobpalkdakmmecajahgnnol
Official URL https://chromewebstore.google.com/detail/search-params-remover/gfmcbkcihnobpalkdakmmecajahgnnol
Description a browser extension helps you surf without utm_source and fbclid
File Size 11.73 KB
Installation Count 80
Current Version 0.2.3
Last Updated 2022-08-25
Publish Date 2018-12-05
Rating 3.50/5 Total 2 Ratings
Developer kong0107
Email [email protected]
Payment Type free
Supported Languages 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"
}