2
我需要編寫關閉FireFox中特定標題的選項卡。是否存在與下面的AppleScript示例相同的FireFox?使用AppleScript關閉FireFox中的特定選項卡
在Safari關閉標籤頁:
tell application "Safari"
delete (every tab of every window where its name contains "[done]")
end tell
關閉標籤頁的Chrome:
tell application "Google Chrome"
delete (every tab of every window where its title contains "[done]")
end tell
謝謝,這真是幫了我。 – rein