Jump to content

Can someone create a workflow that let google chrome open a specific url in a new window?


Recommended Posts

Here is a quick and easy workflow to do what you want. You will have to assign the hotkeys for each one. It allows you to either open the current OSX selection or clipboard in either chrome, firefox, or safari. You can get it here:  https://www.dropbox.com/s/8kkpcjbzr2sde05/Open URL with hotkey.alfredworkflow?dl=0

 

Examine it and you will see that it is very easy to create workflows like this. There was no programming involved. So, go and experiment.

Link to comment
9 hours ago, raguay.customct said:

snip

Wow... Thanks!! I just got into a little bit of programming, HTML css and stuff. Trying to get used to mac and hopefully all these small tips and tricks I learn can one day give my workflow a little boost! ! And naming keywords is kind of ... tough.... currently using alt+c/f/s Thanks for the help! 

Link to comment
9 hours ago, raguay.customct said:

Here is a quick and easy workflow to do what you want. You will have to assign the hotkeys for each one. It allows you to either open the current OSX selection or clipboard in either chrome, firefox, or safari. You can get it here:  https://www.dropbox.com/s/8kkpcjbzr2sde05/Open URL with hotkey.alfredworkflow?dl=0

 

Examine it and you will see that it is very easy to create workflows like this. There was no programming involved. So, go and experiment.

Wait... this does not open new chrome window... instead it opens a new tab in the existing window... how am I gonna solve this??? I want it to open an url in a completely new window. 

 

Okay... how about this, could you teach me to create a workflow (keyword based, not hotkey based) that opens a new browser tab in a completely new window. And if I hold down command key while doing this, it will open the link in my clipboard. Sorry for being so picky. I'm gonna go google it 1st. 

Link to comment

AppleScript to open a URL in a new Chrome window:

 

 

-- Open URL in new Chrome window

on newChromeWindow(theURL)

    tell application "Google Chrome"

        tell (make new window)

            set URL of active tab to theURL

        end tell

        activate

    end tell

end newChromeWindow

 

on run (argv)

    newChromeWindow("http://www.deanishe.net")

end run

Link to comment
4 hours ago, deanishe said:

snip

er... sorry I tried but did not manage to get it working. 

 

Here is what I created, (copied some template online.)   CW for new chrome window and when you hold command key , it will go into the incognito mode.

I wanna add an option so that I can type in the url also. https://drive.google.com/file/d/0B4Oj-Aylh-ymWkh2UVVrNl9kejQ/view?usp=sharing

Link to comment
  • 1 month later...
  • 1 year later...
  • 7 months later...
On 1/26/2017 at 6:43 AM, raguay.customct said:

Here is a quick and easy workflow to do what you want. You will have to assign the hotkeys for each one. It allows you to either open the current OSX selection or clipboard in either chrome, firefox, or safari. You can get it here:  https://www.dropbox.com/s/8kkpcjbzr2sde05/Open URL with hotkey.alfredworkflow?dl=0

 

Examine it and you will see that it is very easy to create workflows like this. There was no programming involved. So, go and experiment.

 

This link is dead, can you update please?

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...