您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hide/blocks announcements of a specific steam community group. Specify group name in the "blockgroup" variable.
// ==UserScript== // @name Steam Community - Block group announcements // @namespace Royalgamer06 // @version 0.1 // @description Hide/blocks announcements of a specific steam community group. Specify group name in the "blockgroup" variable. // @author Royalgamer06 // @match http://steamcommunity.com/*/home // @grant none // ==/UserScript== var blockgroup = "TF2 Flaming Raffles"; var ann = document.querySelectorAll("div.blotter_group_announcement_header > div.blotter_group_announcement_header_text > a"); for (var i = 0; i < ann.length; i++) { if (ann[i].innerHTML == blockgroup) { var del = ann[i].parentNode.parentNode.parentNode.parentNode; del.parentNode.removeChild(del); } }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址