Skip to content

Instantly share code, notes, and snippets.

@tksugimoto
Created April 3, 2018 08:59
Show Gist options
  • Save tksugimoto/a5b5c3e5dcc8ba5c30efe9bfa79de546 to your computer and use it in GitHub Desktop.
Save tksugimoto/a5b5c3e5dcc8ba5c30efe9bfa79de546 to your computer and use it in GitHub Desktop.
javascript: (() => {
const query = Object.entries({
/* 元の言語 */
sl: 'en',
/* 翻訳する言語 */
tl: 'ja',
u: document.URL,
/* 原文を表示する */
anno: 2,
}).map(([key, value]) => {
return `${encodeURIComponent(key)}=${encodeURIComponent(value)}`;
}).join("&");
window.open(`https://translate.google.co.jp/translate?${query}`);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment