Watch and Learn

A chrome extension that replaces Learn's default video and audio player with video.js

¿Qué es Watch and Learn?

Watch and Learn es una extensión de Chrome desarrollada por 9at8, y su función principal es "A chrome extension that replaces Learn's default video and audio player with video.js".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Watch and Learn

Descarga archivos de extensión Watch and Learn en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Watch and Learn Watch and Learn
ID flkieefnhcdppcpgpokibmokkochikei
URL Oficial https://chromewebstore.google.com/detail/watch-and-learn/flkieefnhcdppcpgpokibmokkochikei
Descripción A chrome extension that replaces Learn's default video and audio player with video.js
Tamaño del Archivo 462 KB
Cantidad de Instalaciones 321
Versión Actual 1.2.2
Última Actualización 2021-09-16
Fecha de Publicación 2021-02-21
Calificación 4.40/5 Total de 5 Calificaciones
Desarrollador 9at8
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/9at8/watch-and-learn
URL de la Página de Ayuda https://github.com/9at8/watch-and-learn/issues
Idiomas Soportados 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"
            ]
        }
    ]
}