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
当前为
// ==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);