Files
taimed/node_modules/karma-webkit-launcher/scripts/LaunchSafari.scpt
2025-07-24 17:21:45 +08:00

13 lines
227 B
AppleScript

-- Author: Markus Bordihn (mbordihn@google.com)
-- Description: Open the passed URL over Safari
on run argv
tell application "Safari"
make new document with properties {URL: (item 1 of argv)}
end tell
delay 60
end run