このAppleScriptをスクリプトツールで使用するようにしました。クリックで起動するアプリケーションとして保存できます。セキュリティ編集ツールでも、アプリケーションを承認する必要があります。
メニュー項目をクリックしてプライベートブラウザを開きます。次に、ウィンドウメニューで考えられないURLを探すことで最初のウィンドウを閉じます。それは働いていますが、窓が開いたり閉じたりするので派手です。
何らかの方法でショートカットをクリックできるようにして、Safariウィンドウだけがプライベートモードで起動され、外観のような「マクロ」が表示されないようにすることで改善できると思います。あなたは私のためにこれを改善することができますか?
# 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