洛谷隐藏讨论按钮

隐藏讨论按钮

目前為 2023-09-07 提交的版本,檢視 最新版本

// ==UserScript==
// @name         洛谷隐藏讨论按钮
// @version      0.3
// @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$')){
            -s[i].remove();
        }
    }
})();

QingJ © 2025

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