Skip to content

Instantly share code, notes, and snippets.

@pjhyett
Created January 19, 2009 19:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pjhyett/49129 to your computer and use it in GitHub Desktop.
Save pjhyett/49129 to your computer and use it in GitHub Desktop.
// ==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