Hide Ignored BSN Posts

Sets all posts by ignored users to display: none

// ==UserScript==
// @name         Hide Ignored BSN Posts
// @version      03.31.2015
// @description  Sets all posts by ignored users to display: none
// @author       screwball8
// @include      http://forum.bioware.com/*
// @grant        none
// @namespace    https://gf.qytechs.cn/users/2524
// ==/UserScript==

var posts = document.getElementsByClassName('post_ignore');
for (var i=0; i<posts.length; i++) {
    posts[i].style.display = 'none';
}

QingJ © 2025

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