Search Params Remover

a browser extension helps you surf without utm_source and fbclid

Search Params Removerคืออะไร?

Search Params Remover เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kong0107 และคุณลักษณะหลักของมันคือ "a browser extension helps you surf without utm_source and fbclid"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Search Params Remover

ดาวน์โหลดไฟล์ส่วนขยาย 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"
}