Delete_Ignored_by_el9in

Delete Ignored

目前為 2023-05-18 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Delete_Ignored_by_el9in
// @namespace    Delete_Ignored_by_el9in
// @version      0.1
// @description  Delete Ignored
// @author       el9in
// @match        https://zelenka.guru/*
// @match        https://lzt.market/*
// @match        https://lolz.guru/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=zelenka.guru
// @grant        none
// @license      el9in
// ==/UserScript==

(function() {
    'use strict';
    const elements = document.querySelectorAll('i.fas.fa-user-times.messageIngoredIcon');
    elements.forEach(element => {
        const listItem = element.closest('li');
        if (listItem) listItem.remove();
    });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址