Created
June 19, 2015 14:00
-
-
Save guitarmanvt/284d05d2df62cedb1cfa to your computer and use it in GitHub Desktop.
Revisions
-
guitarmanvt created this gist
Jun 19, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ // ==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.');