// ==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://katcr.co/show/community/ // @include https://kat.cr/new/ // @version 1.4 // @grant none // @downloadURL none // ==/UserScript== function timedRefresh() { location.reload(true); } window.onload = setTimeout(timedRefresh,30000);