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