Auto refresh CoinMarketCap every minutes

Automatically refresh https://coinmarketcap.com/ every minutes

// ==UserScript==
// @name        Auto refresh CoinMarketCap every minutes
// @namespace   http://tampermonkey.net/
// @description Automatically refresh https://coinmarketcap.com/ every minutes
// @match       https://coinmarketcap.com/
// @author      Nobakab
// @version     0.1
// @grant       none
// ==/UserScript==

function changePage()
{
  //window.location = "https://coinmarketcap.com/";
  window.location.reload();
}

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

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址