Skip to content

Instantly share code, notes, and snippets.

@kimchaily
Created April 16, 2015 15:46
Show Gist options
  • Save kimchaily/5e39f9ef2d5040a60c43 to your computer and use it in GitHub Desktop.
Save kimchaily/5e39f9ef2d5040a60c43 to your computer and use it in GitHub Desktop.
Alfred workflow. Open a new window in Chrome and if URL given, then go to that URL
on alfred_script(q)
if not (q starts with "http://")
set q to "http://" & q
end if
tell application "/Applications/Google Chrome.app"
make new window
set URL of active tab of window 1 to q
end tell
end alfred_script
@jame-zhang
Copy link

jame-zhang commented Dec 6, 2018

thanks for sharing
modified: open url in new tab if chrome is running otherwise in new window, link

Copy link

ghost commented Feb 22, 2019

And it still works!

@Rogersjk
Copy link

Great, it's very useful! 😃

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment