Created
June 19, 2015 14:00
-
-
Save guitarmanvt/284d05d2df62cedb1cfa to your computer and use it in GitHub Desktop.
Craigslist - Hide Personals 2015
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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