Ho realizzato questo AppleScript da utilizzare con lo strumento di script. Può essere salvato come l'applicazione da avviare da un clic. Devo approvare l'applicazione però nello strumento di modifica della sicurezza.
Questo apre il browser privato facendo clic sulle voci di menu. Quindi chiude la prima finestra cercando l'URL impensabile nel menu Finestra. Funziona ma appariscente quando le finestre si aprono e si chiudono.
Spero che possa essere migliorato in qualche modo per consentire di fare clic sul collegamento poi vedere che solo la finestra di Safari viene lanciata in modalità privata senza così tanto aspetto "macro". Puoi aiutarmi a migliorare questo per me?
# 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