CommentBlock
Block spam/scam YouTube comments
CommentBlockคืออะไร?
CommentBlock เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Xenova และคุณลักษณะหลักของมันคือ "Block spam/scam YouTube comments"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CommentBlock
ดาวน์โหลดไฟล์ส่วนขยาย CommentBlock ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
CommentBlock is an open-source browser extension that automatically blocks spam/scam YouTube comments.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | CommentBlock |
ID | pnhkbjdbaioddkchelkolhbhcmlibjfb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/commentblock/pnhkbjdbaioddkchelkolhbhcmlibjfb |
คำอธิบาย | Block spam/scam YouTube comments |
ขนาดไฟล์ | 400 KB |
จำนวนการติดตั้ง | 26 |
เวอร์ชันปัจจุบัน | 0.0.3 |
อัปเดตครั้งล่าสุด | 2023-02-28 |
วันที่เผยแพร่ | 2023-02-13 |
คะแนน | 3.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Xenova |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/xenova/commentblock |
URL หน้าช่วยเหลือ | https://github.com/xenova/commentblock |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "CommentBlock", "description": "Block spam\/scam YouTube comments", "version": "0.0.3", "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "content_scripts": [ { "css": [ "styles\/style.css" ], "js": [ "scripts\/defaults.js", "scripts\/utils.js", "scripts\/storage.js", "scripts\/labels.js", "scripts\/preprocess.js", "scripts\/emojis.js", "scripts\/detection.js", "scripts\/content.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "action": { "default_icon": { "16": "icons\/icon.png", "24": "icons\/icon.png", "32": "icons\/icon.png", "128": "icons\/icon-128x128.png" }, "default_title": "CommentBlock", "default_popup": "popup\/popup.html" }, "icons": { "16": "icons\/icon.png", "32": "icons\/icon.png", "64": "icons\/icon.png", "128": "icons\/icon-128x128.png" }, "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |