Skip to content

Instantly share code, notes, and snippets.

@june29
Created August 1, 2008 12:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save june29/3615 to your computer and use it in GitHub Desktop.
Save june29/3615 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Maximize LDR view
// @namespace http://june29.jp/
// @include http://reader.livedoor.com/reader/
// ==/UserScript==
(function(){
GM_addStyle('#header, #control, #menu, #footer { display: none !important; }');
GM_addStyle('#subs_toolbar, #subs_buttons, #subs_search { display: none !important; }');
GM_addStyle('#ads_bottom { display: none !important; }');
var running_man = document.getElementById('message_box');
var subs_tools = document.getElementById('subs_tools');
var div = document.createElement('div');
div.setAttribute('style', 'height: 50px; padding-left: 35px; background-color: #fff;');
subs_tools.appendChild(div);
div.appendChild(running_man);
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment