YouTubeHover
A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.
YouTubeHover là gì?
YouTubeHover là một tiện ích mở rộng Chrome được phát triển bởi Sukrit Chhabra, và tính năng chính của nó là "A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.".
Ả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 YouTubeHover
Tải xuống các tệp mở rộng YouTubeHover 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
You can preview videos by hovering on their thumbnails. You can choose the settings that work best for you from the options page. Note: The extension does not collect any user data (browsing or otherwise) from youtube.com. Please be sure to leave a review or any feedback you have :)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ojbkdiobfdncjfbcmolchhkmcnmhobog |
URL Chính Thức | https://chrome.google.com/webstore/detail/youtubehover/ojbkdiobfdncjfbcmolchhkmcnmhobog |
Mô tả | A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube. |
Kích Thước Tệp | 8.63 MB |
Số Lần Cài Đặt | 479 |
Phiên Bản Hiện Tại | 0.1.12 |
Cập Nhật Lần Cuối | 2018-02-27 |
Ngày Phát Hành | 2018-02-27 |
Đánh Giá | 3.91/5 Tổng số 23 Đánh Giá |
Nhà Phát Triển | Sukrit Chhabra |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/sukritchhabra/YouTubeHover |
URL Trang Trợ Giúp | https://github.com/sukritchhabra/YouTubeHover/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTubeHover", "description": "A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.", "version": "0.1.12", "author": "Sukrit Chhabra", "browser_action": { "default_icon": "imgs\/touch\/icon_96.png", "default_title": "YouTubeHover" }, "options_ui": { "page": "options\/options.html", "chrome_style": true, "open_in_tab": true }, "permissions": [ "storage", "notifications" ], "background": { "scripts": [ "analytics.js", "background.js" ] }, "content_scripts": [ { "js": [ "bower_components\/jquery\/dist\/jquery.min.js", "iframe_api.js", "widgetAPI.js", "options\/defaultSettings.js", "content.js", "controllers\/controllers.min.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com https:\/\/s.ytimg.com\/; object-src 'self'" } |