Skip to content

Instantly share code, notes, and snippets.

@guitarmanvt
Created June 19, 2015 14:00
Show Gist options
  • Select an option

  • Save guitarmanvt/284d05d2df62cedb1cfa to your computer and use it in GitHub Desktop.

Select an option

Save guitarmanvt/284d05d2df62cedb1cfa to your computer and use it in GitHub Desktop.

Revisions

  1. guitarmanvt created this gist Jun 19, 2015.
    14 changes: 14 additions & 0 deletions gistfile1.js
    Original 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.');