Automatically refreshes the RawChat page every 3 minutes
// ==UserScript==
// @name Auto Refresh for RawChat
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Automatically refreshes the RawChat page every 3 minutes
// @author YourName
// @match https://chat.rawchat.cc/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(function() {
window.location.reload(true);
}, 180000); // 180000 milliseconds = 3 minutes
})();