YouTube Video Hider
Hide youtube videos and thumbnails
YouTube Video Hiderคืออะไร?
YouTube Video Hider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Diogo Peres และคุณลักษณะหลักของมันคือ "Hide youtube videos and thumbnails"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Video Hider
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Video Hider ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Increase your productivity and don't get distracted by youtube videos while listening to music. This app has multiple options: * Turn all videos and thumbnails to black; * Minimize main video to show only the timeline. Minimize all the thumbnail's and zoom on hover. * Invert the color of all videos and thumbnails. This app is open-source and all the code is on: https://github.com/diogoperes/youtube-video-hider-app
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | bppihnfgnlpklmhaojomngahgfpmpnbi |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/youtube-video-hider/bppihnfgnlpklmhaojomngahgfpmpnbi |
คำอธิบาย | Hide youtube videos and thumbnails |
ขนาดไฟล์ | 41.22 KB |
จำนวนการติดตั้ง | 123 |
เวอร์ชันปัจจุบัน | 0.0.0.4 |
อัปเดตครั้งล่าสุด | 2019-11-30 |
วันที่เผยแพร่ | 2019-11-30 |
คะแนน | 4.78/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | Diogo Peres |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://www.mrperes.com/youtube-video-hider/ |
URL หน้าช่วยเหลือ | http://www.mrperes.com/youtube-video-hider/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Video Hider", "version": "0.0.0.4", "description": "Hide youtube videos and thumbnails", "browser_action": { "default_icon": ".\/img\/eye.png", "default_popup": ".\/popup.html" }, "web_accessible_resources": [ "css\/hide.css", "css\/minimize.css", "css\/invert.css" ], "author": "Diogo Peres", "permissions": [ "activeTab", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "js": [ ".\/js\/contentscript.js", ".\/js\/hideVideoScript.js", ".\/js\/showVideoScript.js" ], "run_at": "document_end" } ], "background": { "scripts": [ ".\/js\/background.js" ], "persistent": true } } |