Greasy Fork 支持简体中文。

Yahoo Auto Refresh

Yahooずっとリロード

  1. // ==UserScript==
  2. // @name Yahoo Auto Refresh
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Yahooずっとリロード
  6. // @author YourName
  7. // @match https://search.yahoo.co.jp/search?p=3.11*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. const refreshInterval = 10 * 1000;
  15.  
  16. setTimeout(() => {
  17. location.reload();
  18. }, refreshInterval);
  19. })();