How can I create a URL shortcut in Chrome?

61

17

I'm not sure if this is possible, but I want to type in foo, hit enter, and be directed to bar.com.

hookedonwinter

Posted 2012-08-28T14:59:00.283

Reputation: 777

Here's an example of setting up URL shortcuts in Chrome/Firefox - https://medium.com/requestly-docs/create-url-shortcuts-for-jira-projects-4fd49abdcae7 using Requestly

– sachinjain024 – 2019-08-11T10:11:23.873

Answers

89

You can achieve that by taking advantage of the Custom search engines feature in Google Chrome to create simple URL shortcuts. Even though it should be used to create shortcuts for custom search engines, you can use it to create shortcuts to any URL.

  1. Right-click the address bar in Google Chrome and click Edit search engines... (or type chrome://settings/searchEngines in the address bar).

  2. In the Other search engines table, scroll down, and click the Add a new search engine empty box.

    • In the Add a new search engine box, type the name of the shortcut (i.e bar).
    • In the Keyword box, type the shortcut keyword (i.e foo).
    • In the URL with %s in place of query box, type the URL of the website (i.e http://bar.com).

Then, if you type the keyword foo in the address bar, a suggestion named bar will pop up, and by clicking Enter, you will be redirected to http://bar.com.

amiregelz

Posted 2012-08-28T14:59:00.283

Reputation: 6 965

5The %s parameter is very useful for webtools you use often. Example, set the keyword to ru (reddit user) and url to https://reddit.com/u/%s. Then to quickly expand to https://redditcom/u/fred, just type this in the address bar: ru fred – Donn Lee – 2018-04-18T19:32:40.033

1

You can use Requestly chrome+firefox extension to setup URL shortcuts.

Follow these steps:

  1. Install Requestly.
  2. Create a new Redirect Rule.
  3. Define Source & Destination as

    Request Url -> Contains -> https://www.google.com/search?q=foo&
    Destination -> https://bar.com
    

Here is a screenshot setting up the rule:

screenshot

You can also use Regex to redirect only on certain type of value that matches the regex. This answer written by founder of Requestly explains how you can use regex to redirect based on Regex Matches.

Sahil Gupta

Posted 2012-08-28T14:59:00.283

Reputation: 11

0

I found the gui solution to be inadequate,too many steps. It defeats the original purpose, which is to have a shortcut...I used a windows batch script and then created a shortcut on my desktop to the batch file...Probably you can do the same using linux batch, though the location of the executable will be different. If you add the path of the chrome executable to your system variables you won't need the first two lines.

C:&

cd Program Files (x86)\Google\Chrome\Application&

chrome "http://yoururl/"

Its useful if your development environment requires you to use chrome but you prefer to do all your research in Firefox

IjonTichy

Posted 2012-08-28T14:59:00.283

Reputation: 1