Estoy intentando salir de todos los navegadores activos con el siguiente código, pero no puedo obtener la lista de todos los navegadores activos para salir.
tell application "System Events"
set appList to every process whose visible is true
repeat with thisApp in appList
tell process browser
quit
end tell
end repeat
end tell