YouTube Polymer Disable

YOUTUBE OLD

此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.gf.qytechs.cn/scripts/328437/556471/YouTube%20Polymer%20Disable.js

  1. // ==UserScript==
  2. // @name YouTube Polymer Disable
  3. // @match *://www.youtube.com/*
  4. // @exclude *://www.youtube.com/embed/*
  5. // @grant none
  6. // @run-at document-start
  7. // ==/UserScript==
  8. var url = window.location.href;
  9. if (url.indexOf("disable_polymer") === -1) {
  10. if (url.indexOf("?") > 0) {
  11. url += "&";
  12. } else {
  13. url += "?";
  14. }
  15. url += "disable_polymer=1";
  16. window.location.href = url;
  17. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址