有办法在Chrome浏览器中执行此操作吗?
tell application "Google Chrome"
return URL of front document as string
end tell
...不起作用。
最佳答案
由于没有applescript支持,所以唯一的方法就是通过GUI脚本编写,因此我不确定您对applescript的熟悉程度如何,但是gui脚本编写是一种不好的做法。因此请谨慎使用此代码。同样重要的是,您可以访问通用访问偏好设置中启用的辅助设备。
tell application "Google Chrome"
activate
tell application "System Events"
tell application process "Google Chrome"
get value of text field 1 of tool bar 1 of window 1
end tell
end tell
end tell
关于google-chrome - 从OS X上的Chrome获取最前面的选项卡的URL?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2483033/