YouTube Video Hider
Hide youtube videos and thumbnails
YouTube Video Hider là gì?
YouTube Video Hider là một tiện ích mở rộng Chrome được phát triển bởi Diogo Peres, và tính năng chính của nó là "Hide youtube videos and thumbnails".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng YouTube Video Hider
Tải xuống các tệp mở rộng YouTube Video Hider dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | bppihnfgnlpklmhaojomngahgfpmpnbi |
URL Chính Thức | https://chrome.google.com/webstore/detail/youtube-video-hider/bppihnfgnlpklmhaojomngahgfpmpnbi |
Mô tả | Hide youtube videos and thumbnails |
Kích Thước Tệp | 41.22 KB |
Số Lần Cài Đặt | 123 |
Phiên Bản Hiện Tại | 0.0.0.4 |
Cập Nhật Lần Cuối | 2019-11-30 |
Ngày Phát Hành | 2019-11-30 |
Đánh Giá | 4.78/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | Diogo Peres |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.mrperes.com/youtube-video-hider/ |
URL Trang Trợ Giúp | http://www.mrperes.com/youtube-video-hider/ |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |