Skip to content

Instantly share code, notes, and snippets.

@ahmadvaroqua
Forked from kliker/CopyURL
Created May 6, 2016 22:04
Show Gist options
  • Save ahmadvaroqua/5e066262804b6c885ee309ac1da0d57c to your computer and use it in GitHub Desktop.
Save ahmadvaroqua/5e066262804b6c885ee309ac1da0d57c 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