Hide Youtube Video Recommandations

To help you to Focus on the contents that you Really need

当前为 2022-04-18 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Hide Youtube Video Recommandations
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description To help you to Focus on the contents that you Really need
  6. // @author You
  7. // @match https://www.youtube.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
  9. // @grant none
  10. // @run-at document-idle
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. var intv = setInterval(()=>{
  18. var rel = document.querySelector("#related.style-scope.ytd-watch-flexy")
  19. if(rel != void 0){
  20. clearInterval(intv)
  21. rel.style.display = "none"
  22. }
  23. }, 2000)
  24. // Your code here...
  25. })();