/*
* @title [遊↑]
* @description 選択中の文字列で play:game db を検索します。play:game db はボードゲーム、カードゲームの情報サイトです。
* @include http://*
* @license MIT License
* @require http://hosting.gmodules.com/ig/gadgets/file/115338199874488911315/ecl.js
*/
(function() {
var q = typeof(window.getSelection) == 'undefined' ?
document.selection.createRange().text : window.getSelection().toString();
if (!q) { q = window.prompt("play:gameボードゲームデータベースを検索"); }
if (q) {
q = EscapeSJIS(q);
q = 'http://www.gamers-jp.com/playgame/db_searchlist.php?'
+ 'search_str=' + q + '&mode=1&order=1';
}
else if ( q != null) {
q = 'http://www.gamers-jp.com/playgame/db_newsa.php';
}
else {
return false;
}
var w = window.open(q).document;
return true;
})();