是否可以使用 applescript 观看 chrome,如果选项卡失败并崩溃以自动重新加载选项卡?
问问题
84 次
1 回答
2
尝试将这样的脚本保存为保持打开的应用程序:
on idle
tell application "Google Chrome"
repeat with t in tabs of windows
tell t
try
with timeout of 0.1 seconds
execute javascript "document"
end timeout
on error
reload
end try
end tell
end repeat
end tell
return 60
end idle
您可以通过将应用程序添加到登录项来在登录时启动应用程序。它可以用 终止killall applet
。您还可以删除空闲处理程序并使用cron 或 launchd运行脚本。
要测试脚本,您可以通过在 JavaScript 控制台中运行它来强制选项卡崩溃:
x="a";while(1){x+=x}
于 2013-06-07T09:11:38.503 回答