// ==UserScript== // @name KAT Community Reloader // @author Sasidhar // @namespace https://kat.cr/user/Sasidhar./ // @description Reloads Community page every 30 seconds // @include https://kat.cr/community/ // @version 1.0 // @grant none // @downloadURL none // ==/UserScript== function timedRefresh() { location.reload(true); } window.onload = setTimeout(timedRefresh,30000);