Craiglist hide items

Hide items on craiglist.org

Från och med 2014-05-27. Se den senaste versionen.

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 or Violentmonkey 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           Craiglist hide items
// @namespace      http://userscripts.org/users/75950
// @description    Hide items on craiglist.org
// @include        http://*.craigslist.org/sss*
// @version 0.0.1.20140527152834
// ==/UserScript==

var itemsToHide = ['boats','cars','rvs','motorcycles','auto','barter','musical','jewelry','farm','books'];

var theItems = document.getElementsByTagName('blockquote')[1].getElementsByTagName('p');
var theCategories = document.getElementsByTagName('blockquote')[1].getElementsByTagName('small');

for(var i=0; i<theItems.length-1; i++) {
	for(var j=0; j<itemsToHide.length; j++) {
		if(theCategories[i].innerHTML.indexOf(itemsToHide[j])!=-1) theItems[i].style.display = 'none';
	}
}