Greasy Fork

KAT Community Reloader

Reloads Community page every 30 seconds

目前为 2015-11-20 提交的版本。查看 最新版本

// ==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.0
// @grant       none
// ==/UserScript==
function timedRefresh(timeoutPeriod) {
	SetTimeout("location.reload(true);",timeoutPeriod);
}

window.onload = timedRefresh(30000);