/*
* @title 選択した文字列を検索し、ハイライト表示する
* @description 選択した文字列を検索し、ハイライト表示します
* @include http://*
* @license MIT License
* @require
*/
(function(){
//var str=window.getSelection();
var str=(document.all)?document.selection.createRange().text:(window.getSelection()+'');
if(str!=''){
document.body.innerHTML=document.body.innerHTML.replace(str,'<font color="black" style="background:#ffff00;padding:5;">'+str+'</font>')
}
})();