Skip to content

Instantly share code, notes, and snippets.

@amanuel
amanuel / tabssafari2firefox.scpt
Last active October 19, 2024 19:57
Move Safari Tabs to Firefox (preserves windows)
tell application "Firefox"
activate
set safariWindows to getSafariWindows() of me
repeat with w in safariWindows
set newTabURLs to takeSafariTabURLs(w) of me
repeat with tabURL in newTabURLs
open location tabURL
delay 0.5
end repeat
tell application "System Events" to keystroke "n" using command down