美文网首页
mac在文本中使用google进行右键快捷翻译

mac在文本中使用google进行右键快捷翻译

作者: 抽象的海宁 | 来源:发表于2020-04-19 00:56 被阅读0次
image.png

使用齿轮的quickaction


image.png
image.png

双击run Application


image.png
on run {input, parameters}
    
    set output to "https://translate.google.cn/#auto/zh-CN/" & urldecode(input as string)
    
    tell application "Google Chrome" to open location output
    
end run

on urldecode(x)
    
    set cmd to "'require \"cgi\"; puts CGI.escape(STDIN.read.chomp)'"
    
    do shell script "echo " & quoted form of x & " | ruby -e " & cmd
    
end urldecode

拷贝进去覆盖,按command + s保存

就可以了


image.png image.png

相关文章

网友评论

      本文标题:mac在文本中使用google进行右键快捷翻译

      本文链接:https://www.haomeiwen.com/subject/qylxbhtx.html