Como mover todas as abas abertas do Safari para o Firefox?

2

No meu caso, tenho muitas abas abertas no Safari e quero mudar para o Firefox. Eu sei que posso anotar todo o URL em um arquivo de texto e abrir todos eles novamente um por um em outro navegador. Mas estou procurando por qualquer atalho.

    
por metal gear solid 30.09.2014 / 15:14

2 respostas

2

Eu tentei seguir o que o Ramhound mencionou e acabou sendo muito útil. Salvei todos os marcadores em uma pasta no Safari e importei os marcadores no Firefox. Foi apenas um processo simples.

    
por 01.12.2015 / 14:45
1

Você pode usar o seguinte AppleScript:

tell application "Firefox"
    activate
    set newTabURLs to takeSafariTabURLs() of me
    repeat with tabURL in newTabURLs
        open location tabURL
        delay 1
    end repeat

end tell

on takeSafariTabURLs()
    set tabURLs to {}
    tell application "Safari"
        repeat with w in windows
            if name of w is not "" then --in case of zombie windows
                repeat with t in tabs of w
                    set tabURL to URL of t
                    set the end of tabURLs to tabURL

                end repeat
            end if
        end repeat
        return tabURLs
    end tell
end takeSafariTabURLs
    
por 19.05.2017 / 12:44