はてなハイクで一番下までスクロールすると続きを読み込むあれ

  • /*
     * @title はてなハイクで一番下までスクロールすると続きを読み込むあれ
     * @description よくわかんないけど最近は手動になっている気がするからとりあえづ書いた......(とりあえづ?とりあえず?……まあいいや)、気が向いたら後で「だいたい」一番下で修正するかもしれないけどこれも残るから大丈夫……たぶん大丈夫
     * @include http://h.hatena.ne.jp/*
     * @license MIT License
     */
    
    (function(){
    	function f(){
    		setTimeout(f,2000);
    		if(
    				Math.max(document.documentElement.scrollTop   ,document.body.scrollTop   )==
    				Math.max(document.documentElement.scrollTopMax,document.body.scrollTopMax)){
    			var c=document.querySelectorAll('#main div.stream div.streambody div.pager a.more.button.pager-older img');
    			if(c.length>0){c[0].click();}
    		}
    	}
    	f();
    	return null;
    })();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2014/08/13 03:08:25 - 2014-08-13