Greasy Fork is available in English.

Auto refresh adsyou

Automatically refresh Adsyou

As of 2022-12-28. See the latest version.

This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @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);