Skip to content

Instantly share code, notes, and snippets.

@takai
Created August 11, 2009 13:02
Show Gist options
  • Save takai/165800 to your computer and use it in GitHub Desktop.
Save takai/165800 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name hide blockquote
// @namespace recompile.net
// @include http://b.hatena.ne.jp/entrylist*
// ==/UserScript==
(function () {
var style = document.createElement('style');
style.innerHTML = 'blockquote { display: none; }';
document.getElementsByTagName('head')
.item(0)
.appendChild(style);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment