reload.js 366 B

12345678910111213141516
  1. // ==UserScript==
  2. // @name T-caht-刷新
  3. // @author tianyunperfect
  4. // @description 简介
  5. // @version 1.0.0
  6. // @update 2021-07-08 16:16:14
  7. // @include https://chat.openai.com/chat*
  8. // ==/UserScript==
  9. (async () => {
  10. setInterval(()=> {
  11. window.location.reload();
  12. }, 10 * 60 * 1000);
  13. })();