YouTube Spam Remover
Hides most YouTube spam comments
YouTube Spam Removerคืออะไร?
YouTube Spam Remover เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Luke Pflibsen-Jones และคุณลักษณะหลักของมันคือ "Hides most YouTube spam comments"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Spam Remover
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Spam Remover ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Detects spam comments and automatically hides them, protecting its users from spoofers, adult content pushers, and other annoyances. If the add-on hides a comment you want to see, simply click the "Likely spam (+)" text and it will reveal the hidden comment (with the profile picture blurred just in case). Displaying the reason the comment was marked as spam can be disabled/enabled via the "spam reason labels" in the options menu.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Spam Remover |
ID | gmlbmlpbijkhcdhfaaimaehgjfjccffd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-spam-remover/gmlbmlpbijkhcdhfaaimaehgjfjccffd |
คำอธิบาย | Hides most YouTube spam comments |
ขนาดไฟล์ | 938 KB |
จำนวนการติดตั้ง | 1,206 |
เวอร์ชันปัจจุบัน | 2.1.0 |
อัปเดตครั้งล่าสุด | 2023-12-07 |
วันที่เผยแพร่ | 2022-02-03 |
คะแนน | 2.57/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | Luke Pflibsen-Jones |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/lukepfjo/YouTube-Spam-Remover |
URL หน้าช่วยเหลือ | https://github.com/luketimothyjones/youtube-spam-remover/issues/ |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Spam Remover", "version": "2.1.0", "description": "Hides most YouTube spam comments", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage", "unlimitedStorage" ], "host_permissions": [ "https:\/\/yt3.ggpht.com\/*", "https:\/\/raw.githubusercontent.com\/lukepfjo\/YouTube-Spam-Remover\/main\/src\/extern\/opennsfwjs\/model\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*", "https:\/\/youtube.com\/watch*" ], "js": [ "yt-spam-remover.js", "opennsfw.min.js", "pixelmatch.min.js" ], "css": [ "yt-spam-remover.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "yt-spam-remover-worker.js", "opennsfw.min.js", "pixelmatch.min.js", "allowed-sites.json.gz" ], "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/youtube.com\/*" ] } ], "action": { "default_icon": { "16": "icon16.png", "48": "icon48.png" }, "default_popup": "gui\/ytsr-gui-tab.html" }, "options_ui": { "page": "gui\/ytsr-gui-options.html", "browser_style": true }, "background": { "service_worker": "yt-spam-remover-background.js" } } |