Hide Ignored BSN Posts

Sets all posts by ignored users to display: none

  1. // ==UserScript==
  2. // @name Hide Ignored BSN Posts
  3. // @version 03.31.2015
  4. // @description Sets all posts by ignored users to display: none
  5. // @author screwball8
  6. // @include http://forum.bioware.com/*
  7. // @grant none
  8. // @namespace https://greasyfork.org/users/2524
  9. // ==/UserScript==
  10.  
  11. var posts = document.getElementsByClassName('post_ignore');
  12. for (var i=0; i<posts.length; i++) {
  13. posts[i].style.display = 'none';
  14. }