Auto Refresh for RawChat

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
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址