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
.
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
.
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.
Right-click the address bar in Google Chrome and click Edit search
engines...
(or type
chrome://settings/searchEngines
in the address bar).
In the Other search engines
table, scroll down, and click the Add a
new search engine
empty box.
Add a new search engine
box, type the name of the shortcut
(i.e bar
). Keyword
box, type the shortcut keyword (i.e
foo
). 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
.
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:
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:
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.
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
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