Block Youtube Channels
Blocks Youtube channels and hides their videos.
Block Youtube Channelsคืออะไร?
Block Youtube Channels เป็นส่วนขยายของ Chrome ที่พัฒนาโดย blockchannel.ytb และคุณลักษณะหลักของมันคือ "Blocks Youtube channels and hides their videos."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Block Youtube Channels
ดาวน์โหลดไฟล์ส่วนขยาย Block Youtube Channels ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Allows you to hide videos uploaded by certain Youtube channels from appearing in you feed and other locations on Youtube. You can also hide videos based on some keywords. Features * Hide videos by blocked channels * Hide videos whose title contain blocked keywords NOTE: Channels are not blocked, only videos uploaded by them are hidden in Youtube. Changelog Version 2.00 * Add keyword based blocking * Badge text Version 1.4 * Minor fixes Version 1.3 * Hide related/featured channels * Minor fixes Version 1.2 * Make it work with channels without user * Add links to blocked channels * Bug fix to hide videos in sidebar Version 1.1 * Add 'Block' button to videos page.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | bdabpienmkhglpmbkmnlhhcikogkihim |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/block-youtube-channels/bdabpienmkhglpmbkmnlhhcikogkihim |
คำอธิบาย | Blocks Youtube channels and hides their videos. |
ขนาดไฟล์ | 53.88 KB |
จำนวนการติดตั้ง | 5,000 |
เวอร์ชันปัจจุบัน | 2.2.1 |
อัปเดตครั้งล่าสุด | 2017-07-09 |
วันที่เผยแพร่ | 2017-07-09 |
คะแนน | 1.89/5 รวมทั้งหมด 104 คะแนน |
ผู้พัฒนา | blockchannel.ytb |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/aniket134/blockchannel |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Block Youtube Channels", "description": "Blocks Youtube channels and hides their videos.", "version": "2.2.1", "browser_action": { "default_icon": { "32": "icon32.png" }, "default_title": "Block Youtube Channels", "default_popup": "popup.html" }, "permissions": [ "storage", "webNavigation", "tabs", "declarativeContent", "activeTab", "*:\/\/*.youtube.com\/*", "*:\/\/youtube.com\/*" ], "background": { "scripts": [ "jquery.js", "events.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/youtube.com\/*" ], "js": [ "jquery.js", "utils.js", "trie.js", "db.js", "content_script.js" ], "run_at": "document_end" } ] } |