Advertisement
Guest User

Untitled

a guest
Apr 19th, 2024
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         GOL scroll gone
  3. // @namespace    https://www.gry-online.pl/newsroom/news/
  4. // @version      2024-04-19
  5. // @description  try to take over the world!
  6. // @author       You
  7. // @match        https://www.gry-online.pl/newsroom/*
  8. // @icon         https://www.google.com/s2/favicons?sz=64&domain=gry-online.pl
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13.     'use strict';
  14.  
  15.     var goneMax = 5;
  16.     var gone = window.setInterval(function(){
  17.         if (observerWaypointLoader != undefined) {
  18.             window.clearInterval(gone);
  19.             observerWaypointLoader.disconnect();
  20.             console.info('Scroll gone');
  21.         }
  22.         goneMax--;
  23.         if(goneMax==0){
  24.             window.clearInterval(gone);
  25.             console.info('Scroll gone aborted max');
  26.         }
  27.     }, 200);
  28.  
  29. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement