Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name GOL scroll gone
- // @namespace https://www.gry-online.pl/newsroom/news/
- // @version 2024-04-19
- // @description try to take over the world!
- // @author You
- // @match https://www.gry-online.pl/newsroom/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=gry-online.pl
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- var goneMax = 5;
- var gone = window.setInterval(function(){
- if (observerWaypointLoader != undefined) {
- window.clearInterval(gone);
- observerWaypointLoader.disconnect();
- console.info('Scroll gone');
- }
- goneMax--;
- if(goneMax==0){
- window.clearInterval(gone);
- console.info('Scroll gone aborted max');
- }
- }, 200);
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement