ボドゲブックマークレット

 気になるゲームタイトルの文字列を選択してブックマークレットを実行すると、play:gameやBoardGameGeekから検索できます。Google chromeで動作確認はしてありますが、動かない場合もあるかもしれません。その際には不具合報告いただければ頑張ってみます。

play:gameでの検索用

javascript:(function(){traceFrames(window);function traceFrames(w){getSelectedText(w);var flen=w.frames.length;for(var i=0;i<flen;i++){traceFrames(w[i]);}}function getSelectedText(w){var t;try{if(w.document.selection){t=w.document.selection.createRange().text;}else if(w.getSelection){t=w.getSelection();}else if(w.document.getSelection){t=w.document.getSelection().toString();}}catch(e){return;}if(t!=''){m='http://www.gamers-jp.com/playgame/db_searchlist.php?search_str='+t;window.open(m,'');}}})();

BoardGameGeekでの検索用

javascript:(function(){traceFrames(window);function traceFrames(w){getSelectedText(w);var flen=w.frames.length;for(var i=0;i<flen;i++){traceFrames(w[i]);}}function getSelectedText(w){var t;try{if(w.document.selection){t=w.document.selection.createRange().text;}else if(w.getSelection){t=w.getSelection();}else if(w.document.getSelection){t=w.document.getSelection().toString();}}catch(e){return;}if(t!=''){t = t.toString().replace(/ /g,"+");m='http://boardgamegeek.com/geeksearch.php?action=search&objecttype=boardgame&q='+t;window.open(m,'');}}})();