我正在尝试在 Automator 中创建一个动作,但我不确定是否只能使用此软件或者我需要使用 applescript。
我需要创建一个操作,当我在浏览器(首选 Firefox,但也可以是 Safari)的某个选项卡中设置特定 URL 时,它会自动在新选项卡中打开一个新的 URL。
有人知道这是否可行吗?我该怎么做?
答案1
这应该可以工作。这是一个 AppleScript。
set YourURL to "www.google.com"
set URLtoOpenOn to "https://au.yahoo.com/?p=us"
repeat
tell application "Safari"
set URLs to URL of every document
end tell
repeat with theItem in URLs
if theItem = URLtoOpenOn then
tell application "Safari" to open YourURL
end if
end repeat
delay 3
end repeat