YouTube Old Scroll Bar

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或关注我们的公众号极客氢云获取最新地址