Search Params Remover

a browser extension helps you surf without utm_source and fbclid

Search Params Remover là gì?

Search Params Remover là một tiện ích mở rộng Chrome được phát triển bởi kong0107, và tính năng chính của nó là "a browser extension helps you surf without utm_source and fbclid".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Search Params Remover

Tải xuống các tệp mở rộng Search Params Remover dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Search Params Remover Search Params Remover
ID gfmcbkcihnobpalkdakmmecajahgnnol
URL Chính Thức https://chromewebstore.google.com/detail/search-params-remover/gfmcbkcihnobpalkdakmmecajahgnnol
Mô tả a browser extension helps you surf without utm_source and fbclid
Kích Thước Tệp 11.73 KB
Số Lần Cài Đặt 80
Phiên Bản Hiện Tại 0.2.3
Cập Nhật Lần Cuối 2022-08-25
Ngày Phát Hành 2018-12-05
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển kong0107
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}