Skip to content

Instantly share code, notes, and snippets.

@moyashi
Created February 26, 2020 04:55
Show Gist options
  • Save moyashi/5e4634707db68048fad1856aee29e144 to your computer and use it in GitHub Desktop.
Save moyashi/5e4634707db68048fad1856aee29e144 to your computer and use it in GitHub Desktop.
Safariで見ているページをGoogle翻訳に渡して日本語表示するAppleScript
tell application "Safari"
tell document 1
set u to URL
set uu to "https://translate.google.com/translate?sl=auto&tl=ja&u=" & u
open location uu
end tell
end tell
@moyashi
Copy link
Author

moyashi commented Feb 26, 2020

自分はBetterTouchToolでSafariのみで有効なキーボードショートカットに割り当てて使っています。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment