Hice este AppleScript para usarlo con la herramienta script. Se puede guardar como la aplicación para lanzar desde un clic. Sin embargo, tengo que aprobar la aplicación en la herramienta de edición de seguridad.
Esto abre el navegador privado haciendo clic en los elementos del menú. Luego cierra la primera ventana buscando la impensable URL en el menú Ventana. Funciona pero es llamativo ya que las ventanas se abren y se cierran.
Me gustaría que se pudiera mejorar de alguna manera para permitir hacer clic en el acceso directo y luego ver que sólo se lanza la ventana de Safari en modo privado sin tanta apariencia de "macro". ¿Pueden ayudarme a mejorar esto?
# Start or bring forward Safari window
tell application "Safari"
activate
end tell
# Open a URL that cannot be found
set theURL to "http://localhost:38"
tell application "System Events"
tell process "Safari"
open location theURL
end tell
end tell
# Launch a new private window
tell application "System Events"
tell process "Safari"
tell menu bar 1
click menu bar item "File"
tell menu "File"
click menu item "New Private Window"
end tell
end tell
end tell
end tell
# Close the first launcher window
tell application "System Events"
tell process "Safari"
tell menu bar 1
click menu bar item "Window"
tell menu "Window"
click menu item "Failed to open page"
end tell
end tell
tell menu bar 1
click menu bar item "File"
tell menu "File"
click menu item "Close Window"
end tell
end tell
end tell
end tell