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
官方網址 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"
}