OGFAP Ad Blocker

Blocks ads on OGFAP

  1. // ==UserScript==
  2. // @name OGFAP Ad Blocker
  3. // @namespace https://greasyfork.org/en/users/1304832-xrex-xrex
  4. // @version 1.0
  5. // @description Blocks ads on OGFAP
  6. // @author XREX
  7. // @license MIT
  8. // @include https://ogfap.com/*
  9. // @grant none
  10. // @run-at document-start
  11. // @icon https://ogfap.com/favicon.ico
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. const observer = new MutationObserver((mutationsList) => {
  18. for (let mutation of mutationsList) {
  19. if (mutation.type === 'childList') {
  20. mutation.addedNodes.forEach(node => {
  21. if (node.nodeType === 1 && (node.classList.contains('banner'))) {
  22. console.log('Popup element appeared:', node);
  23. node.style.display = 'none';
  24. }
  25. });
  26. }
  27. }
  28. });
  29.  
  30. observer.observe(document.body, {
  31. childList: true,
  32. subtree: true
  33. });
  34. })();