Import Safari Tabs
Summary: Imports all of the tabs in the frontmost Safari window.
Requires: EagleFiler
Install Location: ~/Library/Scripts/Applications/Safari/
Last Modified: 2019-10-02
Description
There are many ways to import a single Web page, as described in Importing Web Pages and URLs. This script lets you import all the tabs in the frontmost Safari window at once.
Installation Instructions · Download in Compiled Format · Download in Text Format
Script
tell
application
"Safari"
set
_urls
to
URL
of
every
tab
of
window
1
end
tell
tell
application
"EagleFiler"
import
URLs
_urls
end
tell