Skip to content

Instantly share code, notes, and snippets.

@natikgadzhi
Created October 27, 2016 06:30
Show Gist options
  • Save natikgadzhi/c8f69b6439cedbd143a62c9e4bacfb1a to your computer and use it in GitHub Desktop.
Save natikgadzhi/c8f69b6439cedbd143a62c9e4bacfb1a to your computer and use it in GitHub Desktop.
Applescript to open Alexa Rank for current Safari tab
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