Pinned Threads Remover for the E-Hentai Forums

Hide Pinned Threads in the E-Hentai Forums

  1. // ==UserScript==
  2. // @name Pinned Threads Remover for the E-Hentai Forums
  3. // @description Hide Pinned Threads in the E-Hentai Forums
  4. // @include http://forums.e-hentai.org/index.php?*
  5. // @version 0.0.1.20150415072819
  6. // @namespace https://greasyfork.org/users/2233
  7. // ==/UserScript==
  8.  
  9. var divs = document.querySelectorAll('tr>td.row1>div')
  10. if(divs) {
  11. for(var i=divs.length-1; i>=0; i--) { if(/Pinned:/.test(divs[i].textContent)) { divs[i].parentNode.parentNode.style.display = 'none' } }
  12. }
  13.