livedoorReaderを広くして使う

Chromeで使うのに修正した。

function fullWindow() {
    var style = document.createElement('style')
    style.type = 'text/css';
    style.innerHTML = '#header, #menu, #control, #ads_bottom {display: none;}';
    document.body.appendChild(style);
}

function moveMessage() {
    var m = document.getElementById('message');
    m.id = '';
    m.innerHTML = '';
    
    var span = document.createElement('span');
    span.className = 'alert';
    span.id = 'message';
    with (span.style) {
	position = 'fixed';
	background = 'none repeat scroll 0% 0% rgb(255, 255, 255)';
	fontSize = '12px';
	padding = '0pt';
    }
    var el = document.getElementById('right_top_navi');
    el.parentNode.insertBefore(span, el);
}

fullWindow();
moveMessage();

var script = function() {
    fit_screen();
};

location.href = 'javascript:(' + script + ')()';