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.
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.
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.
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