Advertisement
ryanjj245

RemoveTwitterBias

Nov 11th, 2020
1,236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function removeAEvents() {
  2.     aEvents = document.querySelectorAll("a[href*=events]");
  3.     for(aEventsI = 0; aEventsI < aEvents.length; aEventsI += 1) {
  4.         aEvents[aEventsI].style.opacity = "0";
  5.     }
  6.     setTimeout(function() {
  7.             removeAEvents();   
  8.     }, 2600);
  9. }
  10. removeAEvents();
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement