虎嗅24小时清洁工 Huxiu 24Hr Cleaner

删除评论框

// ==UserScript==
// @name         虎嗅24小时清洁工 Huxiu 24Hr Cleaner
// @namespace    https://gf.qytechs.cn
// @version      0.1
// @description  删除评论框
// @author       affrog
// @match        https://www.huxiu.com/moment/
// @grant        none
// ==/UserScript==

function removeComments(mutationList, observer) {
    mutationList.forEach(function(mutation){
        if (mutation.target.className == 'moment-item') {
            var comments = mutation.target.getElementsByClassName('moment-comment-wrap');
            if (comments.length > 0) {
                comments[0].remove();
            }
        }
    })
}

(function() {
    'use strict';

    var rootNode = document.body;
    var observer = new MutationObserver(removeComments);
    if (rootNode) {
        observer.observe(rootNode, {
            childList: true,
            subtree: true
        });
    }
})();

QingJ © 2025

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