Watch and Learn

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

Watch and Learnคืออะไร?

Watch and Learn เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 9at8 และคุณลักษณะหลักของมันคือ "A chrome extension that replaces Learn's default video and audio player with video.js"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Watch and Learn

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}