>>889
全く動作確認してないけどソースファイルにある
「テキストを指定ドメイン内で検索」と「選択範囲をテキストファイルとして保存」のコードを
組み合わせればいいんじゃないの
こんな感じ

{
  dir:'RLU',
  modifier:'',
  name:'選択範囲をを指定ドメイン内で検索',
  obj:'text',
  cmd:function(){
    var _document=document.commandDispatcher.focusedWindow.document;
    var sel = _window.getSelection();
    if (sel && !sel.isCollapsed) {
      _document.location.href='http://www.google.com/search?q=site:'
        +_document.location.href.split('/')[2]+' '+encodeURIComponent(sel.toString());
    }
  }
}