Skip to content

Instantly share code, notes, and snippets.

@HusseinMorsy
Created January 21, 2009 10:54
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 HusseinMorsy/49924 to your computer and use it in GitHub Desktop.
Save HusseinMorsy/49924 to your computer and use it in GitHub Desktop.
xml
// ==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