Jandan_Girl_Without_Someone

煎蛋女装中隐藏来个C的发帖。

目前為 2021-03-22 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Jandan_Girl_Without_Someone
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  煎蛋女装中隐藏来个C的发帖。
// @author       You
// @match        http://jandan.net/girl/*
// @icon         http://cdn.jandan.net/static/img/favicon.ico
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    let tags = document.querySelectorAll('.commentlist li');
    for (let each of tags) {
        console.log(each);
        if (each.querySelector('.author strong').title.endsWith("03c4ab3f3654b12b4b7e8422d323f603dd88542a")) {
            each.style.display = "none";
        }
    };
})();

QingJ © 2025

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