Yahoo Auto Refresh

Yahooずっとリロード

// ==UserScript==
// @name         Yahoo Auto Refresh
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Yahooずっとリロード
// @author       YourName
// @match        https://search.yahoo.co.jp/search?p=3.11*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const refreshInterval = 10 * 1000;

    setTimeout(() => {
        location.reload();
    }, refreshInterval);
})();

QingJ © 2025

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