Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save scriptingosx/47a76087812b306e78d8 to your computer and use it in GitHub Desktop.
Save scriptingosx/47a76087812b306e78d8 to your computer and use it in GitHub Desktop.
Safari - Build Text Link List from Tabs
@ChristoferK
Copy link

A bit more compact:

property text item delimiters : linefeed
set links to {}

tell application id "com.apple.Safari" to tell ¬
	tabs in windows to repeat with T in it
	tell T to set the end of my links to ¬
		{name, "<" & URL & ">", ""}
end repeat

set the clipboard to the links as text
get the clipboard

Or, for markdown links:

property text item delimiters : linefeed
set links to {}

tell application id "com.apple.Safari" to tell ¬
	tabs in windows to repeat with T in it
	tell T to set the end of my links to"[", name, "]", ¬
		"(", URL, ")"]
end repeat

set the clipboard to the links as text
get the clipboard

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment