はてブJKずれなくする

  • /*
     * @title はてブJKずれなくする
     * @description いったん j で通り過ぎたアイテムに k で戻ってから「すべて表示」すると、「すべて表示」したアイテムより下にあるアイテムのうち 1 回以上 current-element になったことのあるアイテムの位置がずれるやつを直す。^http://b\.hatena\.ne\.jp/[^/]+/(?:bookmark|favorite|interest)? で使う。
     * @include http://b.hatena.ne.jp/*
     * @license MIT License
     */
    
    Array.prototype.slice.call(
      document.querySelectorAll('.entry-comment .toggle-show')
    ).forEach(function(e) {
      e.setAttribute(
        'onclick',
        e.getAttribute('onclick')
        + 'Hatena.Bookmark.navigator.elementPositions.splice(Hatena.Bookmark.navigator.caretIndex+1,Hatena.Bookmark.navigator.elementPositions.length);'
      );
    });
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2012/06/24 18:57:27 - 2012-06-24