我正在寻找一种通过 url 关闭 safari 中特定选项卡的方法。我可能会扩展这样的内容:
tell application "Safari"
repeat with t in tabs of windows
tell t
if name starts with "google.com" then close
end tell
end repeat
end tell
这里的问题是我还没有找到一种方法来获取选项卡的 url 值并基于此关闭它们。