It would be kind of cool to be able to run a command that would grab all open tabs and urls and convert them to:
I could modify this applescript: Getting a text file with the url of open tabs:
tell application "Safari"
-- Count the number of Windows
set numWindows to number of windows
repeat with w from 1 to numWindows
--Count the number of Tabs
set numTabs to number of tabs in window w
repeat with t from 1 to numTabs
-- Set the Tab Name and URL values
set tabName to name of tab t of window w
set tabURL to URL of tab t of window w
-- Create the Tab link and write the code
set output to output & " <a href=\"" & tabURL & "\">" & tabName & "</a>" & linefeed as string
end repeat
end repeat
end tell
-- Close out the HTML document
set output to output & "</body>
" & "</html>
"
-- Write the entire HTML document to TextEdit
tell application "TextEdit"
activate
make new document
set the text of the front document to output
end tell
To work with Chrome.
It would be kind of cool to be able to run a command that would grab all open tabs and urls and convert them to:
I could modify this applescript: Getting a text file with the url of open tabs:
To work with Chrome.