ETH improvements

ETH improvements

Video Player features: Improves the video player that is used for lecture recordings by adding new controls: -up arrow increases…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ETH improvements",
  "version": "1.1",
  "description": "",
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://www.lehrbetrieb.ethz.ch/myStudies/*",
        "https://moodle-app2.let.ethz.ch/*",
        "https://aai-logon.ethz.ch/idp/profile/SAML2/*",
        "https://idbdfedin16.ethz.ch/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "https://video.ethz.ch/etc/*"
      ],
      "run_at": "document_end",
      "js": [
        "inject.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "video.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "ETH improvements",
    "default_icon": {
      "16": "images/eth16.png",
      "32": "images/eth32.png",
      "48": "images/eth48.png",
      "128": "images/eth128.png"
    }
  },
  "icons": {
    "16": "images/eth16.png",
    "32": "images/eth32.png",
    "48": "images/eth48.png",
    "128": "images/eth128.png"
  },
  "manifest_version": 3
}