Created
January 19, 2009 19:38
-
-
Save pjhyett/49129 to your computer and use it in GitHub Desktop.
This file contains 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 Kottke Blue Border Remover | |
// @namespace http://gist.github.com/49129 | |
// @description Gets rid of that annoying blue border wrapping kottke.org | |
// @include http://*.kottke.org | |
// @include http://*.kottke.org/* | |
// ==/UserScript== | |
var els = ['t', 'b', 'l', 'r', 'tl', 'tr', 'bl', 'br'] | |
for(var i in els) { | |
document.getElementById(els[i]).style.display = 'none' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment