YouTube Minus Mind Control

Remove suggestions from YouTube homepage and video pages.

  1. // ==UserScript==
  2. // @name YouTube Minus Mind Control
  3. // @namespace http://kartikynwa.gitlab.io/
  4. // @version 0.1
  5. // @description Remove suggestions from YouTube homepage and video pages.
  6. // @author KS
  7. // @match *://*.youtube.com/*
  8. // @icon https://www.google.com/s2/favicons?domain=www.youtube.com
  9. // @grant none
  10. // @run-at document-end
  11. // ==/UserScript==
  12.  
  13. // Function courtesy of PaarCrafter on StackOverflow
  14. // https://stackoverflow.com/a/46285637
  15. function addGlobalStyle(css) {
  16. var head, style;
  17. head = document.getElementsByTagName('head')[0];
  18. if (!head) { return; }
  19. style = document.createElement('style');
  20. style.type = 'text/css';
  21. style.innerHTML = css;
  22. head.appendChild(style);
  23. }
  24.  
  25. addGlobalStyle("#contents { display: none !important; }");

QingJ © 2025

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