Get Hatena.Bookmark.entry.eid

  • /*
     * @title Get Hatena.Bookmark.entry.eid
     * @description inspired by http://let.hatelabo.jp/mame-tanuki/let/gYC-xpP0iY7WfA
     * @include http://b.hatena.ne.jp/entry*
     * @license MIT License
     */
    (function(d){
      if(!d.documentElement.hasAttribute('data-entry-eid')) return;
      const SearchForm = d.querySelector('#header form input');
      const EID = d.documentElement.dataset.entryEid;
      SearchForm.value = 'id:' + EID;
      SearchForm.focus();
    })(document);
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2018/05/02 15:30:36 - 2018-05-02