Greasy Fork is available in English.
try to take over the world!
当前为
// ==UserScript==
// @name ReloadPage 2.5min
// @namespace http://tampermonkey.net/
// @version 0.2
// @description try to take over the world!
// @author You
// @match https://freebitco.in/
// @match http://example.com/
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(function(){ location.reload(); }, 2000*10*5);
})();