油猴自动刷新脚本

// ==UserScript==
// @name         test
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
//注意!match后边的网址是这个脚本生效的网址
// @match        https://www.baidu.com/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    //time以毫秒为单位
    let time=1000;
    setTimeout(() => {
        location.reload()
    },time);
    // Your code here...
})();
posted @ 2021-07-15 16:26  ice--cream  阅读(4271)  评论(0编辑  收藏  举报