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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
            ]
        }
    ]
}