Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name `Odświeżenie podczas laga
- // @version 1.1
- // @description Odświeża Ci margona, jak masz tzw. laga.
- // @author adi wilk
- // @match *://*.margonem.pl/
- // @exclude https://www.margonem.pl/
- // ==/UserScript==
- !function(_parseInput) {
- var idleTime = 0;
- var firstTime = true;
- parseInput = function(a, b, c) {
- _parseInput(a, b, c);
- if (firstTime) {
- setInterval(function() {
- idleTime++;
- if (idleTime > 5) {
- idleTime = 0;
- window.location.reload();
- }
- }, 1000);
- firstTime = false;
- }
- idleTime = 0;
- }
- }(parseInput)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement