はてなハイクで自動でスクロールってやつをついったー用にかきかえた

  • /*
     * @title はてなハイクで自動でスクロールってやつをついったー用にかきかえた
     * @description だいたい1000コめのあたりでとまる
     * @include http://h.hatena.*
     * @license MIT License
     * @require 
     */
    
    lts=0;lt=0;
    sI_id_scroll = setInterval((function() {
    
    	if(document.querySelectorAll('#stream-items-id li').length==lt){
    		lt=document.querySelectorAll('#stream-items-id li').length;
    		if(lts<=5){
    			lts+=1;
    		}else{
    			lts=0;
    			clearInterval(sI_id_scroll);
    		}
    	}
    	window.scroll(window.scrollX, window.scrollMaxY);
    	return null;
    }), 500);
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2013/04/04 14:54:32 - 2013-04-04