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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Search Params Remover
قم بتنزيل ملفات الامتداد Search Params Remover بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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" } |