Greasy Fork is available in English.

Auto refresh adsyou

Automatically refresh Adsyou

As of 28.12.2022. See ბოლო ვერსია.

ეს სკრიპტი არ უნდა იყოს პირდაპირ დაინსტალირებული. ეს ბიბლიოთეკაა, სხვა სკრიპტებისთვის უნდა ჩართეთ მეტა-დირექტივაში // @require https://update.greasyfork.org/scripts/457266/1132687/Auto%20refresh%20adsyou.js.

// ==UserScript==
// @name        Auto refresh adsyou
// @version     1.0
// @namespace   SuperNova
// @author      Saputra
// @description Automatically refresh Adsyou
// @grant       GM_xmlhttpRequest

// ==/UserScript==

function changePage()
{
  //window.location = "https://adsyou.biz/auto/currency/trx/";
  window.location.reload();
}

var numberOfMSToWait = 120000;
//setTimeout(changePage(), numberOfMSToWait);
setTimeout(function(){ location.reload(); }, numberOfMSToWait);