Created
October 27, 2016 06:30
-
-
Save natikgadzhi/c8f69b6439cedbd143a62c9e4bacfb1a to your computer and use it in GitHub Desktop.
Applescript to open Alexa Rank for current Safari tab
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
property theURL : "" | |
on run {input, parameters} | |
tell application "Safari" | |
set theURL to URL of current tab of window 1 | |
end tell | |
tell application "Safari" | |
open location "http://www.alexa.com/siteinfo/" & theURL | |
end tell | |
end run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment