Created
March 11, 2009 02:14
-
-
Save takai/77255 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name LDR繧「繝峨ヵ繧」繝シ繝峨r蜑企勁 | |
// @namespace reader.livedoor.com | |
// @include http://reader.livedoor.com/reader/ | |
// ==/UserScript== | |
(function () { | |
var head = document.getElementsByTagName('head')[0]; | |
var style = document.createElement('style'); | |
style.type = 'text/css'; | |
style.innerHTML = '.adfeeds_body { display: none; }'; | |
head.appendChild(style); | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment