Auto refresh CoinMarketCap every minutes

Automatically refresh https://coinmarketcap.com/

目前為 2019-09-04 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Auto refresh CoinMarketCap every minutes
// @namespace   autoRefreshCMC
// @description Automatically refresh https://coinmarketcap.com/
// @match       https://coinmarketcap.com/
// @version     final
// @grant       none
// @author      nobakab
// ==/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或关注我们的公众号极客氢云获取最新地址