洛谷隐藏讨论按钮

隐藏讨论按钮

目前为 2023-04-28 提交的版本。查看 最新版本

// ==UserScript==
// @name         洛谷隐藏讨论按钮
// @version      0.1
// @description  隐藏讨论按钮
// @match        https://www.luogu.com.cn/*
// @author       MlkMathew
// @license      MIT
// @grant        none
// @namespace https://gf.qytechs.cn/users/1068192
// ==/UserScript==

(function() {
    'use strict';
    const s= document.querySelectorAll('a');
    for (let i = 0; i < s.length; i++) {
        if(s[i].href.match('/discuss/lists$')){
            -s[i].remove();
        }
    }
})();

QingJ © 2025

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