Skip to content

Instantly share code, notes, and snippets.

@hitode909
Created February 22, 2009 07:03
Show Gist options
  • Save hitode909/68371 to your computer and use it in GitHub Desktop.
Save hitode909/68371 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name remove_hatena_header
// @namespace http://d.hatena.ne.jp/hitode909/
// @description remove hatena's header.
// @include *.hatena.ne.jp/*
// ==/UserScript==
var banner = document.getElementById('banner');
if (banner)
{
banner.parentNode.removeChild(banner);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment