您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Forces the YouTube progress bar to update even when it's supposed to be hidden.
// ==UserScript== // @name YouTube Progressbar Updater // @version 0.2 // @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);