Channel Blocker
Block irrelevant channels from the home page of youtube.
Channel Blockerคืออะไร?
Channel Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย xanderjakeq และคุณลักษณะหลักของมันคือ "Block irrelevant channels from the home page of youtube."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Channel Blocker
ดาวน์โหลดไฟล์ส่วนขยาย Channel Blocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Stay productive while on Youtube by blocking distracting or irrelevant content from specific channels out of your homepage. You can't click on them if can't see them.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Channel Blocker |
ID | bdcfpamdaoifippnlppibiejaagbihon |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/channel-blocker/bdcfpamdaoifippnlppibiejaagbihon |
คำอธิบาย | Block irrelevant channels from the home page of youtube. |
ขนาดไฟล์ | 10.86 KB |
จำนวนการติดตั้ง | 1,636 |
เวอร์ชันปัจจุบัน | 1.1.1 |
อัปเดตครั้งล่าสุด | 2022-06-21 |
วันที่เผยแพร่ | 2019-09-04 |
คะแนน | 1.80/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | xanderjakeq |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/thelostcreatives/youtube_channel_blocker |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Channel Blocker", "author": "1o1.wtf [https:\/\/github.com\/thelostcreatives]", "description": "Block irrelevant channels from the home page of youtube.", "version": "1.1.1", "action": { "default_popup": "popup.html", "default_icon": { "48": "\/icon.png" } }, "permissions": [ "notifications", "storage", "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "background": { "service_worker": "background.js" } } |