Chat Filter for YouTube Live
Chrome Extension for Filtering Chat Messages on YouTube Live.
Chat Filter for YouTube Liveคืออะไร?
Chat Filter for YouTube Live เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://fiahfy.blogspot.com และคุณลักษณะหลักของมันคือ "Chrome Extension for Filtering Chat Messages on YouTube Live."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chat Filter for YouTube Live
ดาวน์โหลดไฟล์ส่วนขยาย Chat Filter for YouTube Live ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
- Filter chat messages by text or regular expression. - Mask only messages or hide completely.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Chat Filter for YouTube Live |
ID | jalcplhakmckbmlbidmbmpaegcpbejog |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chat-filter-for-youtube-l/jalcplhakmckbmlbidmbmpaegcpbejog |
คำอธิบาย | Chrome Extension for Filtering Chat Messages on YouTube Live. |
ขนาดไฟล์ | 192 KB |
จำนวนการติดตั้ง | 3,413 |
เวอร์ชันปัจจุบัน | 0.0.12 |
อัปเดตครั้งล่าสุด | 2023-05-04 |
วันที่เผยแพร่ | 2020-05-25 |
คะแนน | 4.48/5 รวมทั้งหมด 21 คะแนน |
ผู้พัฒนา | https://fiahfy.blogspot.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "icons": { "128": "icon.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/live_chat*" ], "all_frames": true, "js": [ "content-script.js" ], "css": [ "content-script.css" ] } ], "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "name": "Chat Filter for YouTube Live", "description": "Chrome Extension for Filtering Chat Messages on YouTube Live.", "version": "0.0.12" } |