您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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);