/*
* @title 翻訳
* @description コピペ to グーグル翻訳
* @include http://*
* @license MIT License
* @javascript_url
*/
var a=window.getSelection().toString();
var b=encodeURIComponent(a);
var u="https://translate.google.co.jp/#auto/ja/"+b;
window.open(u);