Skip to content

Instantly share code, notes, and snippets.

@guitarmanvt
Created June 19, 2015 14:00
Show Gist options
  • Save guitarmanvt/284d05d2df62cedb1cfa to your computer and use it in GitHub Desktop.
Save guitarmanvt/284d05d2df62cedb1cfa to your computer and use it in GitHub Desktop.
Craigslist - Hide Personals 2015
// ==UserScript==
// @grant none
// @name Craigslist - Hide Personals 2015
// @description This style hides the personals section on the craigslist homepages (in June 2015 anyway).
// @author guitarmanvt
// @include http://craigslist.org/*
// @include https://craigslist.org/*
// @include http://*.craigslist.org/*
// @include https://*.craigslist.org/*
// @run-at document-end
// ==/UserScript==
console.log('hideCLPersonals: starting.');
document.getElementById('ppp').remove();
console.log('hideCLPersonals: done.');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment