NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name YouTube Progressbar Updater // @version 0.1 // @description Forces the YouTube progress bar to update even when it's supposed to be hidden. // @author Workgroups // @match *://www.youtube.com/* // @grant none // @namespace https://greasyfork.org/users/14014 // ==/UserScript== var findVideoInterval = setInterval(function() { var ytplayer = document.querySelector(".html5-video-player:not(.addedupdateevents)"); if (!ytplayer) { return; } ytplayer.className+=" addedupdateevents"; var video = ytplayer.querySelector("video"); var progressbar = ytplayer.querySelector(".ytp-play-progress"); var loadbar = ytplayer.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)+")"; }); },500); var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = '.ytp-autohide .ytp-chrome-bottom {opacity: 1; bottom: -37px;}'; document.getElementsByTagName('head')[0].appendChild(style);