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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension that replaces Learn's default video and audio player with video.js"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Watch and Learn एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" ] } ] } |