配置全局键盘快捷键以在 Mac OS X 上的 Chrome 中打开标签的最佳方法是什么?
<alt><tab>+
<cmd><t>。<cmd><return>在 Mail.app 中按我的快捷方式(恰好是
),它需要将 Chrome 带到前面并打开一个新标签chrome://newtab,不是像这样的网站http://www.google.com现在,我已经将Quicksilver.app配置为
每当我按下时执行以下 AppleScript(或
osascript)<cmd><return>:
#!/usr/bin/osascript
tell application "Google Chrome Canary"
activate
end tell
tell application "System Events"
tell process "Google Chrome Canary"
tell menu bar 1
tell menu bar item "File"
tell menu "File"
click menu item "New Tab"
end tell
end tell
end tell
end …Run Code Online (Sandbox Code Playgroud)