Blue Check Hider
Identify and hide Twitter Blue users
Blue Check Hiderคืออะไร?
Blue Check Hider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://gsajith.com และคุณลักษณะหลักของมันคือ "Identify and hide Twitter Blue users"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Blue Check Hider
ดาวน์โหลดไฟล์ส่วนขยาย Blue Check Hider ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension will hide any users with a verified checkmark next to their name in the Twitter web UI. You should install it if you want a peaceful browsing experience free of brands, ads, and those who pay $8.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Blue Check Hider |
ID | jhkoihkndkemdikaiafkiolgidghjfkl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/blue-check-hider/jhkoihkndkemdikaiafkiolgidghjfkl |
คำอธิบาย | Identify and hide Twitter Blue users |
ขนาดไฟล์ | 497 KB |
จำนวนการติดตั้ง | 611 |
เวอร์ชันปัจจุบัน | 1.3 |
อัปเดตครั้งล่าสุด | 2023-05-05 |
วันที่เผยแพร่ | 2023-04-21 |
คะแนน | 4.25/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | https://gsajith.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/gsajith/blue-check-hider |
URL หน้าช่วยเหลือ | https://github.com/gsajith/blue-check-hider |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Blue Check Hider", "version": "1.3", "description": "Identify and hide Twitter Blue users", "permissions": [ "activeTab", "storage" ], "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "content_scripts": [ { "js": [ ".\/static\/js\/content.js" ], "run_at": "document_end", "matches": [ "https:\/\/*.twitter.com\/*", "http:\/\/*.twitter.com\/*", "https:\/\/twitter.com\/*", "http:\/\/twitter.com\/*" ] } ], "background": { "service_worker": ".\/static\/js\/background.js", "type": "module" }, "action": { "default_popup": "index.html", "default_icon": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "default_title": "Blue Check Hider" } } |