每3秒自动移除页面中的所有仅包含星号(*)的列表项
// ==UserScript==
// @name 自动移除星号列表项
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 每3秒自动移除页面中的所有仅包含星号(*)的列表项
// @author ferryboat
// @match *://*.zhile.io/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
// 定时器,每3秒执行一次
setInterval(function() {
const listItems = document.querySelectorAll('li');
listItems.forEach(li => {
if (li.textContent.trim() === '*') {
li.style.display = 'none';
}
});
}, 300);
})();