Youtube remove channels

Removing the recommended channels

  1. // ==UserScript==
  2. // @name Youtube remove channels
  3. // @description Removing the recommended channels
  4. // @namespace channel_scissors
  5. // @include http*://*.youtube.com/*
  6. // @include http*://youtube.com/*
  7. // @version 1.0
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. window.setTimeout(
  12. function check() {
  13. var a = document.querySelectorAll('.section-list > li');
  14. var words = /Канал 1|Канал 2/;
  15. for (var i=0;i<a.length;i++) if (words.test(a[i].innerHTML))
  16. a[i].parentNode.removeChild(a[i]);
  17. window.setTimeout(check, 300);
  18. }, 300
  19. );
  20.  
  21. /* Для блокировки нужных каналов их названия прописываем вместо "Канал 1" и "Канал 2"
  22. Добавление последующих каналов - через прямую | , как на образце */

QingJ © 2025

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