I use the Livereload Extension in Chrome. To make the extension work, I have to open Chrome and then click on the icon to make the extension refresh the tab when needed.
How can I launch the extension with AppleScript?
I came so far:
on run {input, parameters}
tell application "Google Chrome"
open location "http://localhost:4000/"
end tell
return input
end run