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

目前为 2015-08-05 提交的版本。查看 最新版本

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