Watch and Learn
A chrome extension that replaces Learn's default video and audio player with video.js
Watch and Learnとは何ですか?
Watch and Learnは9at8によって開発されたChromeの拡張機能で、その主な機能は「A chrome extension that replaces Learn's default video and audio player with video.js」です。
拡張機能のスクリーンショット
Watch and Learn拡張機能のCRXファイルをダウンロード
Watch and Learn拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Watch and Learn |
ID | flkieefnhcdppcpgpokibmokkochikei |
公式URL | https://chromewebstore.google.com/detail/watch-and-learn/flkieefnhcdppcpgpokibmokkochikei |
説明 | A chrome extension that replaces Learn's default video and audio player with video.js |
ファイルサイズ | 462 KB |
インストール数 | 321 |
現在のバージョン | 1.2.2 |
最終更新日 | 2021-09-16 |
公開日 | 2021-02-21 |
評価 | 4.40/5 合計 5 レビュー |
開発者 | 9at8 |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/9at8/watch-and-learn |
ヘルプページのURL | https://github.com/9at8/watch-and-learn/issues |
対応言語 | 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" ] } ] } |