Pinned Threads Remover for the E-Hentai Forums

Hide Pinned Threads in the E-Hentai Forums

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name            Pinned Threads Remover for the E-Hentai Forums
// @description     Hide Pinned Threads in the E-Hentai Forums
// @include         http://forums.e-hentai.org/index.php?*
// @version 0.0.1.20150415072819
// @namespace https://greasyfork.org/users/2233
// ==/UserScript==

var divs = document.querySelectorAll('tr>td.row1>div')
if(divs) {
    for(var i=divs.length-1; i>=0; i--) { if(/Pinned:/.test(divs[i].textContent)) { divs[i].parentNode.parentNode.style.display = 'none' } }
}