Greasy Fork

KAT Community & Latest Ups Reloader

Reloads Community page and latest Uploads page every 30 seconds

目前为 2016-05-20 提交的版本。查看 最新版本

// ==UserScript==
// @name KAT Community & Latest Ups Reloader
// @author Sasidhar
// @namespace https://kat.cr/user/Sasidhar./
// @description Reloads Community page and latest Uploads page every 30 seconds
// @include https://kat.cr/community/
// @include https://kat.cr/new/*
// @include https://kat.cr/community/general-torrent-discussions/
// @include https://kat.cr/community/movies/
// @version 1.3
// @grant none
// ==/UserScript==
function timedRefresh() {
	location.reload(true);
}

window.onload = setTimeout(timedRefresh,30000);