Created
February 26, 2009 01:12
-
-
Save chmurph2/70565 to your computer and use it in GitHub Desktop.
In Safari, this applescript copies the title and URL of the current tab to the clipboard.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- In Safari, this copies the Title and URL of the current tab to the clipboard. | |
-- Save the script in ~/Library/Scripts/Applications/Safari | |
-- Using QuickSilver, I assign a trigger to this script using the hotkey ⌥-C (option c), with the scope of the trigger limited to Safari. | |
-- Inspired by CopyURL + (http://copyurlplus.mozdev.org/) | |
-- Christopher R. Murphy | |
tell application "Safari" | |
set theURL to URL of front document | |
set theTitle to name of front document | |
set the clipboard to theTitle & return & theURL as string | |
end tell |
Very nice.
Perfect - thanks!
Awesome, thanks!
It doesn't work with example.com#SOME_TEXT . How i can assign to a variable theURL full URL with "#SOME_TEXT"?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You saved Zeokat day, very usefull. Thanks.