Skip to content

Instantly share code, notes, and snippets.

@MichaelBlume
Created April 9, 2011 05:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MichaelBlume/911179 to your computer and use it in GitHub Desktop.
Save MichaelBlume/911179 to your computer and use it in GitHub Desktop.
kills the action bar on okcupid profiles
// ==UserScript==
// @name ABKiller
// @namespace http://www.github.com/MichaelBlume/
// @description Kill the action bar on OKCupid profiles
// @include http://www.okcupid.com/profile/*
// @include http://okcupid.com/profile/*
// ==/UserScript==
var action_bar = document.getElementById('action_bar');
action_bar.parentNode.removeChild(action_bar);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment