Make Hatena Bookmak Entry ID URL

    @@ -4,7 +4,6 @@ * @include https://b.hatena.ne.jp/entry/* * @license MIT License * @require - * @private * @javascript_url */ (d=>{
  • /*
     * @title Make Hatena Bookmak Entry ID URL 
     * @description  Get Hatena.Bookmark.entry.eid の ./entry/EID URLを作る
     * @include https://b.hatena.ne.jp/entry/*
     * @license MIT License
     * @require
     * @javascript_url  
     */
    (d=>{
      if(!d.documentElement.hasAttribute('data-entry-eid')) return;
      const HBEntry = 'https://b.hatena.ne.jp/entry/';
      const SearchForm = d.getElementsByName('q')[0];
      const EID = d.documentElement.dataset.entryEid;
      SearchForm.value = HBEntry + EID;
      SearchForm.focus();
      console.log(HBEntry + EID);
    })(document);
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2020/04/25 22:41:04 - 2020-04-25
  2. 2020/04/25 22:35:15 - 2020-04-25
  3. 2020/04/25 21:43:29 - 2020-04-25