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”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载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 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"
            ]
        }
    ]
}