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