Auto Refresh for RawChat

Automatically refreshes the RawChat page every 3 minutes

  1. // ==UserScript==
  2. // @name Auto Refresh for RawChat
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Automatically refreshes the RawChat page every 3 minutes
  6. // @author YourName
  7. // @match https://chat.rawchat.cc/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. setTimeout(function() {
  15. window.location.reload(true);
  16. }, 180000); // 180000 milliseconds = 3 minutes
  17. })();

QingJ © 2025

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