我正在尝试从浏览器中获取活动的浏览器标签。我可以使用以下代码为Chrome做到这一点:
tell application "Google Chrome"
set myURL to the URL of the active tab of the front window
end tell
对于Safari,我正在将Chrome更改为Safari,但它根本无法正常工作
有没有人帮我这个?
答案 0 :(得分:0)
Safari :
tell application "Safari"
set myURL to the URL of the current tab of the front window
end tell
您也不需要如此冗长,丢弃所有the
,例如:
set myURL to URL of current tab of front window
做同样的事情。
在脚本编辑器中,查看图书馆中的 Safari :
答案 1 :(得分:0)