最後まで継ぎ足す

// ==UserScript==
// @name           ap-to-end
// @namespace      http://d.hatena.ne.jp/murky-satyr
// @include        http*
// ==/UserScript==
var aph = document.getElementById('autopagerize_help');
aph && function(stop, yet){
  function sc2e(){ stop || scrollTo(0, 2e9) }
  function ap2e(){
    stop = !stop;
    if(yet) yet = AutoPagerize.addFilter(sc2e);
    sc2e();
  }
  with(aph.appendChild(document.createElement('a'))){
    addEventListener('click', ap2e, false);
    style.cssText = 'position:absolute;right:5px;top:24px';
    textContent = 'toEnd';
    className = 'autopagerize_link';
    href = 'javascript:';
  }
  GM_registerMenuCommand('AutoPagerize - to end', ap2e);
}(1, 1);

主にタイムライン逆行時に使用。
アホみたいだがスペースキー押しっぱなしよりは。