您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
reverts the shitty watch page to the old one. If you are on Firefox use this one version https://pastebin.com/8Zt4aJH8
当前为
// ==UserScript== // @name youtube watch page update reverter // @version 1.3 // @description reverts the shitty watch page to the old one. If you are on Firefox use this one version https://pastebin.com/8Zt4aJH8 // @author Cat Bot // @license MIT // @match *://*.youtube.com/* // @namespace https://www.reddit.com/user/Cat_Bot4 // @icon https://www.youtube.com/favicon.ico // @grant none // @run-at document-start // ==/UserScript== (function() { window['yt'] = window['yt'] || {}; yt['config_'] = yt.config_ || {}; yt.config_['EXPERIMENT_FLAGS'] = yt.config_.EXPERIMENT_FLAGS || {}; var iv = setInterval(function() { yt.config_.EXPERIMENT_FLAGS.kevlar_watch_metadata_refresh = false; }, 1); var to = setTimeout(function() { clearInterval(iv); }, 1000) })();