// ==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 // @downloadURL none // ==/UserScript== function timedRefresh() { location.reload(true); } window.onload = setTimeout(timedRefresh,30000);