/*
* @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:entry:' + EID;
SearchForm.focus();
})(document);