KAT Community Reloader

Reloads Community page every 30 Seconds

目前為 2015-11-19 提交的版本,檢視 最新版本

// ==UserScript==
// @name        KAT Community Reloader
// @author      Sasidhar
// @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);