Remove Ad Banner on "Yandex"

Simple but effective banner remover

  1. // ==UserScript==
  2. // @name Remove Ad Banner on "Yandex"
  3. // @name:ru Удалить баннер рекламы на "Яндекс"
  4. // @namespace http://tampermonkey.net/
  5. // @license MIT
  6. // @version 2024-05-11
  7. // @description Simple but effective banner remover
  8. // @description:ru Простой, но эффективный инструмент для удаления баннеров рекламы
  9. // @author You
  10. // @match https://ya.ru/
  11. // @match https://yandex.ru/games
  12. // @icon https://www.google.com/s2/favicons?sz=64&domain=ya.ru
  13. // @grant none
  14. // ==/UserScript==
  15.  
  16. (function() {
  17. 'use strict';
  18.  
  19. let bannerClass = document.querySelector('.banner');
  20. let bannerId = document.getElementById('yandex-adv-sticky-banner-desktop');
  21.  
  22. if (bannerClass) {
  23. bannerClass.innerHTML = '';
  24. bannerClass.remove();
  25. }
  26.  
  27. if (bannerId) {
  28. bannerId.innerHTML = '';
  29. bannerId.remove();
  30. }
  31. })();

QingJ © 2025

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