Я получил его скрипт:
set vURL to URL of current tab of window 1
end tell
tell application "Google Chrome"
if windows ≠ {} then
make new tab at the end of window 1 with properties {URL:vURL}
else
make new window
set URL of (active tab of window 1) to vURL
end if
activate
end tell
Мне бы очень хотелось, чтобы я мог быстро открыть вкладку, которую я использую в Safari в Firefox, потому что ...
IМне сказали, чтобы добавить больше текста здесь, так что пропустите этот абзац.... у сайта, который я часто использую, есть несколько замечательных функций в Firefox, но он может загружаться медленно, поэтому мне нравится переключаться между ними.
Почему это не сработает, если я поменяю "Google Chrome" на "Firefox":
tell application "Safari"
set vURL to URL of current tab of window 1
end tell
tell application "Firefox"
if windows ≠ {} then
make new tab at the end of window 1 with properties {URL:vURL}
else
make new window
set URL of (active tab of window 1) to vURL
end if
activate
end tell
Спасибо