pjhyett (owner)

Revisions

gist: 49129 Download_button fork
public
Public Clone URL: git://gist.github.com/49129.git
Embed All Files: show embed
blue_remover.user.js #
1
2
3
4
5
6
7
8
9
10
11
12
// ==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'
}