Reloads Community page every 30 seconds
当前为
// ==UserScript==
// @name KAT Community Reloader
// @namespace https://www.kat.cr/user/Sasidhar./
// @description Reloads Community page every 30 seconds
// @include https://www.kat.cr/community/
// @version 1
// @grant none
// ==/UserScript==
function timedRefresh(timeoutPeriod) {
setTimeout("location.reload(true);",timeoutPeriod);
}
window.onload = timedRefresh(30000);