屏蔽圣王薇薇欧的无头漫画讨论贴

用于在NGA猴区屏蔽屏蔽圣王薇薇欧的无头漫画讨论贴

目前為 2018-10-13 提交的版本,檢視 最新版本

// ==UserScript==
// @name         屏蔽圣王薇薇欧的无头漫画讨论贴
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  用于在NGA猴区屏蔽屏蔽圣王薇薇欧的无头漫画讨论贴
// @author       a
// @match        http://bbs.nga.cn/thread.php?fid=-447601*
// @match        http://nga.178.com/thread.php?fid=-447601*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    function doRemove() {
        var topicRows = document.getElementsByClassName("topicrow");
        for (var i = 0; i < topicRows.length; ++i) {
            var topicRow = topicRows[i];
            var author = topicRow.getElementsByClassName("author")[0].textContent;
            if (author !== "圣王薇薇欧") {
                continue;
            }
            var title = topicRow.getElementsByClassName("c2")[0].textContent;
            if (title.indexOf("漫画讨论") < 0) {
                continue;
            }
            topicRow.parentNode.remove();
        }
    }
    doRemove();

})();

QingJ © 2025

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