Created
April 9, 2011 05:55
-
-
Save MichaelBlume/911179 to your computer and use it in GitHub Desktop.
kills the action bar on okcupid profiles
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== | |
// @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