Hice este AppleScript para usar con la herramienta de script. Se puede guardar como la aplicación para iniciar desde un clic. Tengo que aprobar la aplicación aunque 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 URL impensable en el menú Ventana. Está funcionando pero es llamativo a medida que las ventanas se abren y se cierran.
Deseo que se pueda mejorar de alguna manera para permitir hacer clic en el acceso directo y ver que solo la ventana de Safari se inicia en modo privado sin tanta apariencia de "macro". ¿Puedes ayudar a mejorar esto para mí?
# 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