Youtube Video Blocker
Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.
Youtube Video Blockerคืออะไร?
Youtube Video Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bmoses1124 และคุณลักษณะหลักของมันคือ "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Video Blocker
ดาวน์โหลดไฟล์ส่วนขยาย Youtube Video Blocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
An extension to block Youtube videos with undesired keywords. Enter the keywords into a settings page, and videos with those keywords in their titles will not appear.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | cbkaomkmifobpbdkhhiincnigngeckfc |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/youtube-video-blocker/cbkaomkmifobpbdkhhiincnigngeckfc |
คำอธิบาย | Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed. |
ขนาดไฟล์ | 6.02 KB |
จำนวนการติดตั้ง | 555 |
เวอร์ชันปัจจุบัน | 0.1 |
อัปเดตครั้งล่าสุด | 2020-12-23 |
วันที่เผยแพร่ | 2020-12-23 |
คะแนน | 1.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | bmoses1124 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Video Blocker", "version": "0.1", "description": "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.", "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "block_youtube_vids.js" ] } ], "permissions": [ "storage" ], "options_page": "options.html", "manifest_version": 2 } |