Skip to content

Instantly share code, notes, and snippets.

@kliker
Last active May 6, 2016 22:04
Show Gist options
  • Save kliker/7df064c75d45908a56b6 to your computer and use it in GitHub Desktop.
Save kliker/7df064c75d45908a56b6 to your computer and use it in GitHub Desktop.
Alfred app workflow: Get Safari current tab URL to clipboard
on alfred_script(q)
-- Copies URL of the current tab to the clipboard
-- Requires Alfred PowerPack
tell application "Safari"
set theURL to URL of front document
set the clipboard to theURL as string
end tell
end alfred_script
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment