テキストを選択してブックマークレットを実行すると、その部分だけを翻訳し、なにも選択せずにただブックマークレットを実行するとそのページ全体を翻訳します。以下のリンクをブックマークバーにドロップしてくださいEdge の場合は一旦何かのお気に入りを作成してから、上記リンクのコピーを編集で URL に対して置き換える必要がありますこのページの英語翻訳
Google英→日 のソースコード
1.
javascript: (
function
() {
2.
var
b = ((window.getSelection && window.getSelection()) || (document.getSelection && document.getSelection()) || (document.selection && document.selection.createRange && document.selection.createRange().text));
3.
if
(b !=
''
) {
4.
window.open(
'https://translate.google.co.jp/?hl=ja&tab=wT#en/ja/'
+ encodeURIComponent(b));
5.
}
else
{
6.
window.open(
'https://translate.google.co.jp/translate?sl=en&tl=ja&js=n&prev=_t&hl=ja&ie=UTF-8&u='
+ encodeURIComponent(location.href) +
'&act=url'
);
7.
}
8.
})();
Google日→英 のソースコード1.
javascript: (
function
() {
2.
var
b = ((window.getSelection && window.getSelection()) || (document.getSelection && document.getSelection()) || (document.selection && document.selection.createRange && document.selection.createRange().text));
3.
if
(b !=
''
) {
4.
window.open(
'https://translate.google.co.jp/?hl=ja&tab=wT#ja/en/'
+ encodeURIComponent(b));
5.
}
else
{
6.
window.open(
'https://translate.google.co.jp/translate?sl=ja&tl=en&js=n&prev=_t&hl=ja&ie=UTF-8&u='
+ encodeURIComponent(location.href) +
'&act=url'
);
7.
}
8.
})();
Google 翻訳ブックマークレット
|