Skip to content

Instantly share code, notes, and snippets.

@takai
Created November 26, 2008 20:59
Show Gist options
  • Save takai/29570 to your computer and use it in GitHub Desktop.
Save takai/29570 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Remove HatenaBookmark Blockquote
// @namespace hatena
// @include http://b.hatena.ne.jp/*
// ==/UserScript==
var quotes = document.getElementsByTagName("BlockQuote")
for(var i = 0; i < quotes.length; i++) {
quotes[i].style.display = "none";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment