/*
* @title Hatena::Let にサイト内検索を追加 (DuckDuckGo)
* @description Google だと引っかからないページが割とあるみたいです。
* @include http://let.hatelabo.jp/*
* @license MIT License
* @javascript_url
*/
(() => {
const i = document.body.appendChild(document.createElement('iframe'));
document.getElementById('logo').appendChild(i);
document.getElementById('simple-header').style.height = '40px';
i.style.cssText = 'overflow:hidden;margin:0;padding:0;border:0;width:360px;height:40px;';
i.src = 'https://duckduckgo.com/search.html?site=let.hatelabo.jp&prefill=f:htm ';
})();
/*
経緯: http://ptech.g.hatena.ne.jp/noromanba/20170210/1486677295
参考: https://duckduckgo.com/search_box
prefill に指定した文字列は、最初 placeholder じゃなく value に入ってて、クリックすると消える。
なので、クリックしないでフォーカスしてコピー (右クリックして「すべて選択」を選んで Ctrl + C とか) すると、検索の際にペーストして使える。
*/