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
Eメール [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"
}