您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes YouTube themed scrollbar
// ==UserScript== // @name YouTube Old Scroll Bar // @description Removes YouTube themed scrollbar // @match *://*.youtube.com/* // @version 1.0 // @namespace https://gf.qytechs.cn/users/205417 // ==/UserScript== function restoreScrollbar() { document.body.removeAttribute('standardized-themed-scrollbar'); document.querySelector('html').removeAttribute('standardized-themed-scrollbar'); Element.prototype.removeAttributes = function(...attrs) { attrs.forEach(attr => this.removeAttribute(attr)); } document.querySelector('ytd-app').removeAttributes('scrollbar-rework', 'standardized-themed-scrollbar'); } restoreScrollbar();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址