How to enable keyboard shortcut to open specific bookmark / URL while using Chrome?
-
4Firefox users interested in this feature can set [keywords](http://kb.mozillazine.org/Using_keyword_searches) for bookmarks, which can also be used to create custom searches. – May 25 '14 at 17:14
-
1I totally vote for implementing the keyword feature from Firefox into Chrome. Each bookmark can have a single key to be triggered (that's how I am using it). This saved me hundreds of hours of typing. Really a pity that Chrome 51 is still not providing this feature by core. – Avatar Aug 05 '16 at 07:42
-
9An extension called [AutoControl Shortcut Manager](https://chrome.google.com/webstore/detail/autocontrol/lkaihdpfpifdlgoapbfocpmekbokmcfd) lets you assign shortcuts to specific bookmarks, bookmark folders and URLs. – GetFree Jun 08 '19 at 02:26
-
1If you are already using Vimium, you can press b and any letter from your bookmarks to open it. – Betty Oct 15 '21 at 03:53
-
It should be noted that AutoControl Shortcut Manager is Windows-only. – machineghost Jul 19 '22 at 23:03
-
You can now search your bookmarks natively in Chrome: https://blog.google/products/chrome/search-your-tabs-bookmarks-and-history-in-the-chrome-address-bar/ – Matthew Woo Feb 08 '23 at 18:53
13 Answers
Without extensions
The only ways (that I know of) to open a bookmark with the keyboard are the following:
Using the Bookmark Manager:
Open Bookmark Manager by pressing Ctrl + Shift + O.
Three options:
Search all bookmarks (just start typing), press Tab twice and select the desired bookmark with the arrow keys.
Press Tab, select the desired folder, press Tab again and select the desired bookmark with the arrow keys.
If the desired bookmark is in the Bookmarks Bar, press Tab twice and select the desired bookmark with the arrow keys.
Press Enter.
Using Customize and control Google Chrome:
Press Alt + E or Alt + F to open Customize and control Google Chrome.
Press B to enter Bookmarks.
Assuming the desired bookmark is in the Bookmarks Bar, select it with the arrow keys.
Press Enter.
Using the Omnibox:
Press Ctrl + L, Alt + D or F6 to focus the Omnibox.
Type (part of) the desired bookmark's name.
When it appears in the drop-down below the Omnibox, select the desired bookmark with the arrow keys.
Press Enter.
With extensions
Several extensions are able to do this. The easiest way is probably a user script like this one:
// ===UserScript===
// @name Bookmark Launcher
// @description Launches bookmarks with keyboard shortcuts
// ===/UserScript===
var bookmarkLauncherSetup = (function() {
var bookmarks = {}, url;
bookmarks['G'] = 'http://google.com';
bookmarks['S'] = 'http://superuser.com';
window.addEventListener('keyup', function() {
if(event.ctrlKey && event.altKey && !event.shiftKey)
if(url = bookmarks[String.fromCharCode(event.keyCode)])
window.open(url);
});
}());
To use it, do the following:
Modify the array
bookmarksto suit your needs. All letter and number keys should work fine.Save the code as
bookmark-launcher.user.jsin a location of your choice.Open
chrome://extensions/in Google Chrome.Drag and drop
bookmark-launcher.user.jsin the open tab.Click Add.
Note that no extension can function in tabs opening chrome://... URLs (this includes New Tab) or the Chrome Web Store.
In any other tab (after reloading it), pressing Ctrl + Alt + S will open Super User in a new tab.
Note that you have to be focusing the tab itself. If you're focusing, e.g., the omnibox or the developer console, the keyboard shortcuts won't have any effect.
- 13
- 3
- 48,917
- 12
- 130
- 149
-
1The userscript can't work on some pages (http://github.com for example), since they don't accept script-injection... – yckart Apr 02 '14 at 15:49
-
**Update** fixed the problem with script-injection, edited the answer. Should work now... – yckart Apr 02 '14 at 16:03
-
1I have tried adding a `js` file by dragging over the `chrome://extensions` window but the file cannot be dropped there, the cursor changes to a blocked icon. I appreciate this answer is quite old but can anyone confirm that this is still possible with current versions? I am on `52.0.2743.116 m` – tallpaul Aug 26 '16 at 13:09
-
@tallpaul it looks like now you need to package it as an extension, with `manifest.json` file, to add it. – freginold Apr 07 '17 at 22:59
-
2The OP asked for `Shortcut`, the stuff listed above is no shortcut. A shortcut is e. g. `CTRL SHIFT G` to open Google Mail etc. – Avatar Feb 16 '18 at 13:32
-
@KaiNoack A *shortcut* is a faster way to achieve something and can very well involve several commands. In any case, the *with extensions* part of my answer requires only a single key combo to open the specified website. – Dennis Feb 16 '18 at 14:23
-
1Seems like a highly outdated version sadly. After writing manifest files and everything, which is now a requirement, it still does not work. – codepleb Apr 12 '18 at 06:37
-
1@Dennis Thank you for your work. Based on this answer, I created an extension that works again: https://superuser.com/a/1313997/276470 – codepleb Apr 14 '18 at 09:33
As reported in How to Assign a Keyboard Shortcut Key to Frequently Used Google Chrome Bookmarks the key is to set the specific URL to a default Search engine.
Open
chrome://settings/searchEnginesto load the list of search engines.In "Other search engines" add a new one with the following parameters:
- Search engine: the name you give to the search engine.
- Keyword: the keyword you want, say SU.
- URL with %s in place of query:
http://superuser.com/alone if you want the alias to point directly to the site.
After saving it, whenever you type SU in your URL bar you will be either sent to http://superuser.com/ or to http://superuser.com/bla.
You can also specify a placeholder %s when filling the URL with %s in place of query field, say http://superuser.com/%s. Then, when you type "su" Tab + "bla" it will send you to http://superuser.com/bla.
This is the current behaviour for Google Chroome 79.
- 1,877
- 1
- 16
- 36
-
1love this idea, https://gist.github.com/Artistan/45fa744b899f4f054173693298d41930 – Artistan Jan 25 '18 at 17:17
-
6One can also rightclick the url bar and select "edit search engines" instead of having to remember the chrome: url – Florian Straub Feb 07 '18 at 14:36
-
In 2020 you're going to have to type a space and a "search phrase" as well -- Enter won't work. That's fine, your URL won't have a %s in it, so any letter will work. For example just type `SU s`. – Noumenon Jan 31 '20 at 03:50
-
This stopped working after the first time I tried it, I think because Google figured out it was a static site with no search variable. I put a dummy `%s` in the URL, like `http://superuser.com/#%s`, and that seems to keep it working. – Noumenon Jan 31 '20 at 04:09
-
@Noumenon thanks for your comment. Using Chroome 79 it worked to me without any placeholder. I updated the answer, feel free to indicate your version if the behaviour I explain is not the same in your version. – fedorqui Jan 31 '20 at 09:32
-
I'm on 79 too. If it's not the same for everyone, I honestly think you're better off reverting the edit and leaving the pristine, simple answer. Explaining how %s works takes away from the lightbulb moment of "Hey, I could add a keyword search without a keyword!" If it doesn't work for them, then my comment would be there for a workaround. – Noumenon Jan 31 '20 at 12:52
Another approach is to
- Move focus to the url bar with ⌘+L.
- Type the full name of the bookmark followed by a /.
- Press tab to select the second autocompletion (which in my experience is always the first matching bookmark name).
- Press enter.
- 335
- 2
- 3
-
33
-
5@KaiNoack I just tried it on Chrome on Linux. It doesn't actually require the full name, partial is enough (with possibly more tab auto-complete usage) – Caleb Stanford Feb 21 '18 at 22:35
-
4Typing enough characters to be unique is enough, if you prefix your bookmark names with the desired shortcut keys this can be kept very short. (Unfortunately it doesn't substring match anywhere in the name, you have to type from the left) – 79E09796 Dec 03 '18 at 13:26
-
This doesn't work any more, unless there's a way to turn Google search recommendations off. Even "bxzyz" would need seven tab presses. – Noumenon Jan 31 '20 at 04:15
-
This method is really good. It even works with js bookmarklet. Very handy. Just put a short prefix as the desired shortcut in front of the name of your bookmark. – Betty Mar 29 '21 at 11:50
Note: Shortcut is defined as 1 key combination, most of the other answers do require more typing.
Solution A: Autohotkey
Use Autohotkey and define your own shortcuts for your main bookmarks. Here is a script that I prepared as a dummy for you: chrome-bookmarks-shortcuts.ahk
For instance, hold SHIFT WIN and hit G to open gmail.com.
Solution B: Chrome extension: SiteLauncher (Speed Dial)
It helps to a certain extent, however, you can only assign one letter to a bookmark, not two or more.
Solution C: Chrome extension: Shortkeys (Custom Keyboard Shortcuts)
This extension can handle one letter or combinations to open assigned bookmarks. The only problem: You cannot enter those combinations in the URL bar. My workaround, CTRL + T for new tab, then TAB then combination.
However, both extensions feel a bit buggy.
Solution D: Using Chrome's "Custom SearchEngine" (Hack)
This solution does not need any plugin or extra software: https://superuser.com/a/468548/169199
Shortcuts in Firefox
To recall how the bookmark properties look like in Firefox and how easily you can assign a keyword (shortcut) to it:
In Firefox, now entering "mp" in the URL bar opened the specific website. As you can read in the net, Chrome does not have this simple feature and uses the "Search engine" section for this.
- 2,555
- 4
- 36
- 50
This works well on Windows:
First make sure your booksmarks bar is showing (CTRL+Shift+b) and then use:
F6
or
Shift+F6
Those keys switch focus between the Address bar, Bookmarks bar (if showing), and page content.
So if my focus is on the page content, I would use Shift+F6 and then use my arrow keys to navigate my bookmarks.
- 1,225
- 3
- 12
- 12
Inspired by the approach of Dennis:
It didn't work for me and this is probably because his answer is kind of old, but I liked the approach about implementing this myself, since there doesn't seem to be a proper solution out there in the web store.
Here's what you need to do:
- Create 2 files,
manifest.jsonandbackground.js. Put them into a new folder and add the content below to those files. - Within chrome, type
chrome://extensionsin the address bar and activate developer mode on the top right (switch). - Click on the
Load unpackedbutton that appeared and select your folder containing the files.
That's it, with this, you have what you need. As soon as you type CTRL+ALT+G, google will open in a new tab. :)
manifest.json:
{
"name": "Bookmark Shortcutter",
"version": "1.0",
"description": "Custom shortcuts for bookmarks! Coolio!",
"permissions": ["http://*/*", "tabs"],
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["background.js"],
"run_at": "document_start"
}
],
"manifest_version": 2
}
background.js:
if (window == top) {
window.addEventListener('keyup', doKeyPress, false);
}
var bookmarks = {}, url;
bookmarks['G'] = 'http://google.com';
bookmarks['S'] = 'http://superuser.com';
function doKeyPress(event){
if(event.ctrlKey && event.altKey && !event.shiftKey) {
if(url = bookmarks[String.fromCharCode(event.keyCode)]) {
window.open(url);
}
}
}
- 1,175
- 4
- 17
- 24
-
Looks like an amazing solution, but when I press "Load Unpacked" no dialog comes up. I think it doesn't work when the page says "Your browser is managed by your organization." You still deserve an upvote. – Noumenon Jan 31 '20 at 04:03
-
Try this chrome extention Shortkeys (Custom Keyboard Shortcuts) provided by Mike Crittenden.
- 169
- 3
-
Works beautifully for my bookmarklet. Though I had to use `Run Javascript` instead of `Open Bookmark/Bookmarklet`. And it supports Mac `Cmd` modifiers. – Sridhar Sarnobat Sep 20 '19 at 23:27
Addition to the top answer's solution, if you want to also use some scripts like changing playback speed on youtube:
var bookmarkLauncherSetup = (function() {
var bookmarks = {}, url;
bookmarks['G'] = 'http://google.com';
bookmarks['1'] = 'javascript:document.getElementsByClassName("video-stream html5-main-video")[0].playbackRate = 1';
bookmarks['2'] = 'javascript:document.getElementsByClassName("video-stream html5-main-video")[0].playbackRate = 1.5';
bookmarks['3'] = 'javascript:document.getElementsByClassName("video-stream html5-main-video")[0].playbackRate = 2';
bookmarks['4'] = 'javascript:document.getElementsByClassName("video-stream html5-main-video")[0].playbackRate = 2.5';
bookmarks['5'] = 'javascript:document.getElementsByClassName("video-stream html5-main-video")[0].playbackRate = 3';
bookmarks['6'] = 'javascript:document.getElementsByClassName("video-stream html5-main-video")[0].playbackRate = 4';
bookmarks['7'] = 'javascript:document.getElementsByClassName("video-stream html5-main-video")[0].playbackRate = 5';
window.addEventListener('keyup', function() {
if(event.ctrlKey && event.altKey && !event.shiftKey) {
if(url = bookmarks[String.fromCharCode(event.keyCode)]) {
try {
eval(url);
} catch {
window.open(url);
}
}
}
});
}());
- 690
- 8
- 16
- 21
- 1
The following works by typing a keyword into the address bar (omnibar) and pressing enter to jump to a specific url. In Chrome (as of version 59.0), this isn't available through the bookmark manager like it is in Firefox, but you can easily use the Search Engine Shortcuts feature of Chrome to work the same way.
- Right click the address bar (omnibar)
- Select edit search engines...
- Click on 'ADD' - which appears after the default search engines section
- In the dialog that pops up:
- in the search-engine field - name your bookmark
- in the keyword field - enter your keyword shortcut string (what you will need to type in the omnibar to quickly jump to this 'bookmark'
- In URL field - type in the url you want to associate with the keyword
Note: the url can contain a special placeholder: "%s" (without the quotes) that will serve as a placeholder for additional text that you can enter if you press tab after typing the keyword shortcut.
For example: I use a keyword shortcut that jumps to list of bookmarks on pinboard.com by given tag. For that:
- I use 'pint' as keyword,
- and https://pinboard.in/u:jaysen/t:%s/ as url.
Then to access all my bookmarks on pinboard tagged with 'todo'
- I type 'pint' in omnibar,
- press TAB
- type the tag I want to visit - in this example 'todo'
- and ENTER This takes me to https://pinboard.in/u:jaysen/t:todo/
- 11
- 3
An easily accessible fuzzy search over your Chrome bookmarks:
In order to search the bookmarks, activate Vimium chrome extension's "Vomnibar" with
bkey from any webpage.If you want to create a system-wide shortcut, you could use the following Autohotkey automation tool script
#NoEnv SetBatchLines -1 ListLines Off SendMode Input #Space:: ; windows+space will open a Chrome window with search bar over bookmarks from any location run, http://blank.org ; Or any regular webpage. A local webpage would work as well. WinWait ahk_exe chrome.exe WinActivate ahk_exe chrome.exe WinWaitActive ahk_exe chrome.exe send, {b} return
Bonus: you can search your bookmarks by folder by using /. Type in "Vomnibar" /myBookmarkDir myBookmark
- 266
- 2
- 6
I know this thread is quite old. But this is to inform those interested by a solution, that in the past weeks I have programmed an extension to mimic firefox behavior.
The extension picks the aliases directly from your bookmarks. The user adds an alias by editing a bookmark in chrome's bookmark manager. If it works as a bookmark it works as an alias (http(s), javascript, with/without %s parameter). It's also easier to export/import bookmarks with their aliases.
You can find it in the webstore under the name "Alias Bookmarks" by Achernar.
- 1
-
Update: I have since added aliased folders to the extension. It is still experimental, but you can use it to do a "group search" with a set of search engines (with parameters). Feel free to test. – Achernar May 28 '18 at 14:28
December 2019.
If you arrived here looking for what Google Chrome calls now shortcuts (differing from keyboard shortcuts) because you want to add shortcuts to specific URLs in your Windows 10, this might help.
Make sure your Windows 10 is updated to the latest version (1903).
Create shortcut manually
Most flexible option.
In order to add multiple shortcuts to the same domain you need to create them manually. COPY-PASTE doesn't work.
Open your file explorer and go to
%USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Chrome AppsRight click > New > ShortcutThe location of the item is:
"C:\Program Files (x86)\Google\Chrome\Application\chrome_proxy.exe" --profile-directory=Default --app="TARGET_URL".- Replace TARGET_URL with your relevant URL
- Note that the path to chrome_proxy.exe might differ in your installation.
Now the shortcut is created but doesn't look pretty. You can change this by opening the
shortcut properties > Change icon…and finding the relevant icon. Tip: If you created a shortcut from your browser before, the icon will be somewhere.Right click on icon > pin to start. You can have multiple shortcuts to the same app, as long as the URL is somehow different.
Create shortcut using Chrome options
To then modify it to open a specific URL rather than the landing page.
- Create the shortcut from Chrome:
"⋮" > More tools > Create shortcut… - Go to
%USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Chrome Apps - Right click the shortcut you created
- In the Target field, replace
--app-id=XXXXXXfor--app="TARGET_URL"- Replace TARGET_URL with your relevant URL
- 323
- 2
- 6
Try this Chrome Bookmark Shortcut:
You can now open bookmarks using key board shortcuts.
You need to manually edit the javascript code, but instructions are provided at the above link.
- 6,173
- 4
- 33
- 45


