All open Safari tabs to EF?

Is there any way to do this? I’m thinking of:

  • an applescript, similar to those available for DevonThink.

or

  • A way to use one of the safari extensions that captures a text listing of all open tabs for pasting elsewhere; automated so that it would be parsed and captured to EF.

or anything else!

thanks,

Dan

How about a script like this?

tell application "Safari"
    set _urls to {}
    tell window 1
        repeat with _tab in tabs
            copy _tab's URL to end of _urls
        end repeat
    end tell
end tell
tell application "EagleFiler"
    import URLs _urls
end tell