Watch and Learn

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

Cos'è Watch and Learn?

Watch and Learn è un'estensione di Chrome sviluppata da 9at8, e la sua funzione principale è "A chrome extension that replaces Learn's default video and audio player with video.js".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Watch and Learn

Scarica i file di estensione Watch and Learn in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Watch and Learn Watch and Learn
ID flkieefnhcdppcpgpokibmokkochikei
URL Ufficiale https://chromewebstore.google.com/detail/watch-and-learn/flkieefnhcdppcpgpokibmokkochikei
Descrizione A chrome extension that replaces Learn's default video and audio player with video.js
Dimensione del File 462 KB
Conteggio Installazioni 321
Versione Corrente 1.2.2
Ultimo Aggiornamento 2021-09-16
Data di Pubblicazione 2021-02-21
Valutazione 4.40/5 Totale 5 Valutazioni
Sviluppatore 9at8
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/9at8/watch-and-learn
URL della Pagina di Aiuto https://github.com/9at8/watch-and-learn/issues
Lingue Supportate 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"
            ]
        }
    ]
}