Video Speed Control

Adds a video speed control to the top right corner of the website if a video is present

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

Advertisement:

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Advertisement:

// ==UserScript==
// @name         Video Speed Control
// @namespace    http://tampermonkey.net/
// @version      1.01
// @description  Adds a video speed control to the top right corner of the website if a video is present
// @author       mboerr
// @match        *
// @icon         https://www.google.com/s2/favicons?domain=youtube.com
// @grant        none
// @license MIT 
// ==/UserScript==

(function() {
    'use strict';

    // Create the slider element
    var slider = document.createElement("INPUT");
    const maxSpeed = 6;
    slider.setAttribute("type", "range");
    slider.setAttribute("min", "1");
    slider.setAttribute("max", maxSpeed);
    slider.setAttribute("value", "1");
    slider.setAttribute("step", "0.5");
    slider.setAttribute("list", "tickmarks");
    slider.style.cssText = "width: 200px;z-index:99999";

    // Create the datalist element
    var datalist = document.createElement("DATALIST");
    datalist.setAttribute("id", "tickmarks");
    datalist.style.cssText = "display: flex; flex-direction: column; justify-content: space-between; writing-mode: vertical-lr; width: 200px;";

    // Add all integers from 1 to maxSpeed to the datalist
    for (var i = 1; i <= maxSpeed; i++) {
        var option = document.createElement("OPTION");
        option.setAttribute("value", i);
        option.innerHTML = i + "x"; // Add a label to the option
        datalist.style.cssText = "padding:0;"
        datalist.appendChild(option);
    }

    // Create the div element
    var div = document.createElement("DIV");
    div.style.cssText = "position: fixed; top: 50px; right: 10px; z-index:9999; background-color:#ffffff80; border-radius:8px;";

    // Add the datalist and slider to the div
    div.appendChild(datalist);
    div.appendChild(slider);

    // Add the div to the page
    document.body.appendChild(div);

    // Add an event listener for when the slider value changes
    slider.addEventListener("input", function() {
        // Change playback speed of all videos
        const videos = document.querySelectorAll('video');
        for (let video of videos) {
            video.playbackRate = this.value;
        }
        //document.getElementsByTagName("video")[0].playbackRate = this.value;
    });
})();