Created
April 22, 2009 13:00
-
-
Save zuzu/99778 to your computer and use it in GitHub Desktop.
This file contains 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 LivedoorReader Orelize UserScript for Chrome | |
// @namespace http://zuzu-service.net/ | |
// @description LivedoorReaderを更新(表示)した時に一番最初の未読記事を自動的に表示します。 | |
// @include http://reader.livedoor.com/reader/* | |
// ==/UserScript== | |
// main routine | |
window.addEventListener("load", function(e) { | |
with( contentWindow ) { | |
// to fullscreen mode | |
Control.toggle_fullscreen(); | |
Control.toggle_fullscreen(); | |
// show first feed | |
register_hook("after_subs_load", function(){ | |
Control.read_head_subs(); | |
}); | |
} | |
}, false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment