Watch and Learn

Watch and Learn

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

Merlin
Additional files are visible only to premium users

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