YouTube Progressbar Updater

Forces the YouTube progress bar to update even when it's supposed to be hidden. Useful if you have a userstyle like YouTube Controls Under Player or Youtube Progress Bar Fix

Verze ze dne 05. 08. 2015. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         YouTube Progressbar Updater
// @version      0.1
// @description  Forces the YouTube progress bar to update even when it's supposed to be hidden. Useful if you have a userstyle like YouTube Controls Under Player or Youtube Progress Bar Fix
// @author       Workgroups
// @match        *://www.youtube.com/watch/*
// @match        *://www.youtube.com/embed/*
// @grant        none
// @namespace https://greasyfork.org/users/14014
// ==/UserScript==

var findVideoInterval = setInterval(function() {
    var video = document.querySelector("video");
    var progressbar = document.querySelector(".ytp-play-progress");
    var loadbar = document.querySelector(".ytp-load-progress");
    if (!video || !progressbar || !loadbar) {
        return;
    }
    video.addEventListener("timeupdate",function() {
        progressbar.style.transform = "scaleX("+(video.currentTime/video.duration)+")";
    });
    video.addEventListener("progress",function() {
        loadbar.style.transform = "scaleX("+(video.buffered.end(video.buffered.length-1)/video.duration)+")";
    });
    clearInterval(findVideoInterval);
},500);