微博自动刷新

30s自动刷新。注意,需要在隐身/无痕模式下运行

// ==UserScript==
// @name         微博自动刷新
// @description  30s自动刷新。注意,需要在隐身/无痕模式下运行
// @namespace    http://tampermonkey.net/
// @version      0.1.1
// @description  try to take over the world!
// @author       You
// @license      MIT
// @match        *://*.weibo.com/*
// @grant        none
// ==/UserScript==

setTimeout(function(){ location.reload(); }, 30* 1000);