Watch and Learn
A chrome extension that replaces Learn's default video and audio player with video.js
Watch and Learn là gì?
Watch and Learn là một tiện ích mở rộng Chrome được phát triển bởi 9at8, và tính năng chính của nó là "A chrome extension that replaces Learn's default video and audio player with video.js".
Ả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 Watch and Learn
Tải xuống các tệp mở rộng Watch and Learn 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
The default video and audio player on Learn does not work well enough. It's missing a lot of keyboard shortcuts, seeking tracks is not precise and does not support picture in picture, which most browsers support. This extension replaces the default player with a video.js player. (https://videojs.com) Video.js is an extensible video player for browsers, has a lot of plugins, and is used by a lot of companies in production. Watch and Learn leverages it to offer the following features: - binge mode (or "Learn and Chill") - playback rates up to 3x on all videos and audios - default video playback rate using settings in the popup - picture in picture support - keyboard shortcuts like 'M' to mute, 'Space' to pause/play, 'F' to fullscreen, and many more using the 'videojs-hotkeys' plugin
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Watch and Learn |
ID | flkieefnhcdppcpgpokibmokkochikei |
URL Chính Thức | https://chromewebstore.google.com/detail/watch-and-learn/flkieefnhcdppcpgpokibmokkochikei |
Mô tả | A chrome extension that replaces Learn's default video and audio player with video.js |
Kích Thước Tệp | 462 KB |
Số Lần Cài Đặt | 321 |
Phiên Bản Hiện Tại | 1.2.2 |
Cập Nhật Lần Cuối | 2021-09-16 |
Ngày Phát Hành | 2021-02-21 |
Đánh Giá | 4.40/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | 9at8 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/9at8/watch-and-learn |
URL Trang Trợ Giúp | https://github.com/9at8/watch-and-learn/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Watch and Learn", "version": "1.2.2", "icons": { "128": "static\/icon128.png" }, "description": "A chrome extension that replaces Learn's default video and audio player with video.js", "manifest_version": 2, "permissions": [ "storage" ], "browser_action": { "default_popup": "static\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/learn.uwaterloo.ca\/*" ], "js": [ "lib\/video.js", "lib\/videojs.hotkeys.js", "build\/content-script.js" ], "css": [ "lib\/video-js.css" ] } ] } |