// ==UserScript== // @name Clean Weibo // @namespace http://tampermonkey.net/ // @version 0.1 // @description 清理微博 // @author You // @match https://www.weibo.com/p/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; setInterval(() => { document.querySelector('a[action-type="feed_list_delete"]').click() document.querySelector('a[action-type="ok"]').click() }, 1000) })();