in te redi

LDRの見た目をシンプルに

posted by nano on February 27, 2008 01:23

to

しげふみメモ:自分が使っているlivedoor Reader用Greasemonkeyスクリプト
LDR の見た目をいじってみた - gan2 の Ruby 勉強日記

今まで使用していた自作のスクリプトよりも数段便利でした。

以下は、自作部分の設定を引き継ぐために付け足したモノ。

var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('#header,#footer,#menu,.item_footer,.description,.channel_image { display: none ! important; }');
addGlobalStyle('.title table tr,.title table,.title { font-size: 14px ! important;font-weight:bold !important;display:inline ! important;margin:0 ! important;padding:0 ! important; }');

※エントリ上下の日付欄と、フィードのDescriptionとか、フィードに固有のイメージを非表示にして、ブログタイトルの文字を小さくしてます。

コメント



コメント:

関連記事