Player controls for DataCamp

Adds player controls

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         Player controls for DataCamp
// @namespace    http://tampermonkey.net/
// @version      0.0
// @description  Adds player controls
// @author       Avi (https://avi12.com)
// @copyright    2025 Avi (https://avi12.com)
// @license      MIT
// @match        https://projector.datacamp.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=datacamp.com
// @grant        none
// ==/UserScript==

(function () {
  "use strict";

  document.addEventListener("keydown", e => {
    const elPlaybackRateCurrent = document.querySelector(".vjs-menu-item[aria-checked=true]");
    const elVideo = document.querySelector("video");

    switch (e.code) {
      case "Home":
        elVideo.currentTime = 0;
        break;

      case "End":
        elVideo.currentTime = elVideo.duration;
        break;

      case "Comma":
        if (!e.shiftKey) {
          return;
        }
        elPlaybackRateCurrent.nextElementSibling?.click();
        elVideo.focus();
        break;

      case "Period":
        if (!e.shiftKey) {
          return;
        }
        elPlaybackRateCurrent.previousElementSibling?.click();
        elVideo.focus();
        break;
    }
  });
})();