Autor Wiadomość
Heska
PostWysłany: Sob 19:25, 28 Gru 2024    Temat postu: F5 podczas laga

// ==UserScript==
// @name Odświeżenie podczas laga.
// @version 1.1
// @description Odświeża Ci margona, jak masz tzw. laga.
// @author adi wilk
// @match *://*/
// @match *://margonem.pl/*
// @grant none
// ==/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)[/img]

Powered by phpBB © 2001, 2005 phpBB Group