Estoy tratando de hacer un Automatizador de Acción Rápida que aparecerá en el menú de clic derecho en Servicios que tomará el texto resaltado y lo puso en una nueva pestaña en Chrome.
Mirando varios otros posts, he intentado este AppleScript, pero no funciona:
on run {input, parameters}
tell application "Google Chrome"
set myTab to make new tab at end of tabs of window 1
tell application "System Events"
tell application process "Google Chrome"
set value to input
keystroke return
end tell
end tell
end tell
end run
Puedo conseguir que funcione para una URL, pero quiero que esto funcione para no URLs también (y sólo tiene que realizar el comportamiento predeterminado de Chrome con ese texto).