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