Guest User

Hide 'Introduce Yourself' posts

a guest
Aug 2nd, 2020
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name                Hide Gab 'Introduce Yourself' posts
  3. // @namespace           Violentmonkey Scripts
  4. // @match               https://gab.com/*
  5. // @run-at              document-end
  6. // ==/UserScript==
  7.  
  8.  
  9. var introSel = "a[href='/groups/12']";
  10. const DELAY = 500; // milliseconds delay
  11.  
  12.  
  13. var applyModifications = function ()
  14. {
  15.   var q = document.querySelector(introSel);
  16.  
  17.   if(q != null) {
  18.     try {
  19.       q.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.style.display = 'none';
  20.       console.log("*** 'Introduce Yourself' post hidden ***")
  21.     } catch(e) {
  22.       console.error(e);
  23.     }
  24.   }
  25. };
  26.  
  27. (function () {
  28.   window.addEventListener('scroll', () => {
  29.     setTimeout(applyModifications, DELAY);
  30.   });
  31. })();
Add Comment
Please, Sign In to add comment