Shortcut to open specific bookmark / URL in Chrome





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







48















How to enable keyboard shortcut to open specific bookmark / URL while using Chrome?










share|improve this question




















  • 2





    Firefox users interested in this feature can set keywords for bookmarks, which can also be used to create custom searches.

    – user33758
    May 25 '14 at 17:14













  • I 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.

    – Kai Noack
    Aug 5 '16 at 7:42




















48















How to enable keyboard shortcut to open specific bookmark / URL while using Chrome?










share|improve this question




















  • 2





    Firefox users interested in this feature can set keywords for bookmarks, which can also be used to create custom searches.

    – user33758
    May 25 '14 at 17:14













  • I 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.

    – Kai Noack
    Aug 5 '16 at 7:42
















48












48








48


26






How to enable keyboard shortcut to open specific bookmark / URL while using Chrome?










share|improve this question
















How to enable keyboard shortcut to open specific bookmark / URL while using Chrome?







google-chrome keyboard-shortcuts bookmarks






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Oct 30 '12 at 15:31









amiregelz

5,705103752




5,705103752










asked Oct 30 '12 at 12:53









J.OlufsenJ.Olufsen

1,234143354




1,234143354








  • 2





    Firefox users interested in this feature can set keywords for bookmarks, which can also be used to create custom searches.

    – user33758
    May 25 '14 at 17:14













  • I 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.

    – Kai Noack
    Aug 5 '16 at 7:42
















  • 2





    Firefox users interested in this feature can set keywords for bookmarks, which can also be used to create custom searches.

    – user33758
    May 25 '14 at 17:14













  • I 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.

    – Kai Noack
    Aug 5 '16 at 7:42










2




2





Firefox users interested in this feature can set keywords for bookmarks, which can also be used to create custom searches.

– user33758
May 25 '14 at 17:14







Firefox users interested in this feature can set keywords for bookmarks, which can also be used to create custom searches.

– user33758
May 25 '14 at 17:14















I 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.

– Kai Noack
Aug 5 '16 at 7:42







I 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.

– Kai Noack
Aug 5 '16 at 7:42












11 Answers
11






active

oldest

votes


















37














Without extensions



The only ways (that I know of) to open a bookmark with the keyboard are the following:





  • Using the Bookmark Manager:




    1. Open Bookmark Manager by pressing Ctrl + Shift + O.



    2. 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.




    3. Press Enter.





  • Using Customize and control Google Chrome:




    1. Press Alt + E or Alt + F to open Customize and control Google Chrome.


    2. Press B to enter Bookmarks.


    3. Assuming the desired bookmark is in the Bookmarks Bar, select it with the arrow keys.


    4. Press Enter.





  • Using the Omnibox:




    1. Press Ctrl + L, Alt + D or F6 to focus the Omnibox.


    2. Type (part of) the desired bookmark's name.


    3. When it appears in the drop-down below the Omnibox, select the desired bookmark with the arrow keys.


    4. 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:




  1. Modify the array bookmarks to suit your needs. All letter and number keys should work fine.


  2. Save the code as bookmark-launcher.user.js in a location of your choice.


  3. Open chrome://extensions/ in Google Chrome.


  4. Drag and drop bookmark-launcher.user.js in the open tab.


  5. 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.






share|improve this answer


























  • It's working like a charm! Many thanks! :)

    – J.Olufsen
    Oct 30 '12 at 13:52













  • The userscript can't work on some pages (github.com for example), since they don't accept script-injection...

    – yckart
    Apr 2 '14 at 15:49













  • Update fixed the problem with script-injection, edited the answer. Should work now...

    – yckart
    Apr 2 '14 at 16:03











  • I 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 7 '17 at 22:59





















18














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.






share|improve this answer





















  • 10





    Type the full name of the bookmark is not a shortcut, sorry.

    – Kai Noack
    Feb 16 '18 at 13:34






  • 3





    @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)

    – 6005
    Feb 21 '18 at 22:35






  • 1





    Typing 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 3 '18 at 13:26



















6














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/searchEngines to load the list of search engines.

  • In "Other search engines" add a new one with the following parameters:


    • Name: whatever you want, it is not relevant.

    • Keyword: the keyword you want, say SU.

    • URL: the URL you want to set, say http://superuser.com/.




After saving it, whenever you type SU in your URL bar you will be sent to http://superuser.com/.






share|improve this answer
























  • love this idea, gist.github.com/Artistan/45fa744b899f4f054173693298d41930

    – Artistan
    Jan 25 '18 at 17:17






  • 1





    One can also rightclick the url bar and select "edit search engines" instead of having to remember the chrome: url

    – Florian Straub
    Feb 7 '18 at 14:36



















5














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.





Shortcuts in Firefox



To recall how the bookmark properties look like in Firefox and how easily you can assign a keyword (shortcut) to it:



Firefox keyword field



In Firefox, now entering "mp" in the URL bar opened the specific website. As you can read in the net, Chrome 52- does not have this simple feature implemented and abuses the "Search engine" section for this.






share|improve this answer

































    3














    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.






    share|improve this answer


























    • For firefox without using keywords?

      – SmartManoj
      Oct 27 '18 at 13:28



















    1














    Try this chrome extention Shortkeys (Custom Keyboard Shortcuts) provided by Mike Crittenden.



    shortcut






    share|improve this answer































      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.




      1. Right click the address bar (omnibar)

      2. Select edit search engines...

      3. Click on 'ADD' - which appears after the default search engines section

      4. 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/






      share|improve this answer

































        0














        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.






        share|improve this answer





















        • 1





          what does this do?

          – Sathyajith Bhat
          May 25 '14 at 17:38



















        0














        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.json and background.js. Put them into a new folder and add the content below to those files.

        • Within chrome, type chrome://extensions in the address bar and activate developer mode on the top right (switch).

        • Click on the Load unpacked button 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);
        }
        }
        }





        share|improve this answer

































          0














          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.






          share|improve this answer
























          • 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





















          0














          An easily accessible fuzzy search over your Chrome bookmarks:




          1. In order to search the bookmarks, activate Vimium chrome extension's "Vomnibar" with b key from any webpage.



          2. 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
            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






          share|improve this answer


























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "3"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f496212%2fshortcut-to-open-specific-bookmark-url-in-chrome%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            11 Answers
            11






            active

            oldest

            votes








            11 Answers
            11






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            37














            Without extensions



            The only ways (that I know of) to open a bookmark with the keyboard are the following:





            • Using the Bookmark Manager:




              1. Open Bookmark Manager by pressing Ctrl + Shift + O.



              2. 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.




              3. Press Enter.





            • Using Customize and control Google Chrome:




              1. Press Alt + E or Alt + F to open Customize and control Google Chrome.


              2. Press B to enter Bookmarks.


              3. Assuming the desired bookmark is in the Bookmarks Bar, select it with the arrow keys.


              4. Press Enter.





            • Using the Omnibox:




              1. Press Ctrl + L, Alt + D or F6 to focus the Omnibox.


              2. Type (part of) the desired bookmark's name.


              3. When it appears in the drop-down below the Omnibox, select the desired bookmark with the arrow keys.


              4. 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:




            1. Modify the array bookmarks to suit your needs. All letter and number keys should work fine.


            2. Save the code as bookmark-launcher.user.js in a location of your choice.


            3. Open chrome://extensions/ in Google Chrome.


            4. Drag and drop bookmark-launcher.user.js in the open tab.


            5. 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.






            share|improve this answer


























            • It's working like a charm! Many thanks! :)

              – J.Olufsen
              Oct 30 '12 at 13:52













            • The userscript can't work on some pages (github.com for example), since they don't accept script-injection...

              – yckart
              Apr 2 '14 at 15:49













            • Update fixed the problem with script-injection, edited the answer. Should work now...

              – yckart
              Apr 2 '14 at 16:03











            • I 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 7 '17 at 22:59


















            37














            Without extensions



            The only ways (that I know of) to open a bookmark with the keyboard are the following:





            • Using the Bookmark Manager:




              1. Open Bookmark Manager by pressing Ctrl + Shift + O.



              2. 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.




              3. Press Enter.





            • Using Customize and control Google Chrome:




              1. Press Alt + E or Alt + F to open Customize and control Google Chrome.


              2. Press B to enter Bookmarks.


              3. Assuming the desired bookmark is in the Bookmarks Bar, select it with the arrow keys.


              4. Press Enter.





            • Using the Omnibox:




              1. Press Ctrl + L, Alt + D or F6 to focus the Omnibox.


              2. Type (part of) the desired bookmark's name.


              3. When it appears in the drop-down below the Omnibox, select the desired bookmark with the arrow keys.


              4. 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:




            1. Modify the array bookmarks to suit your needs. All letter and number keys should work fine.


            2. Save the code as bookmark-launcher.user.js in a location of your choice.


            3. Open chrome://extensions/ in Google Chrome.


            4. Drag and drop bookmark-launcher.user.js in the open tab.


            5. 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.






            share|improve this answer


























            • It's working like a charm! Many thanks! :)

              – J.Olufsen
              Oct 30 '12 at 13:52













            • The userscript can't work on some pages (github.com for example), since they don't accept script-injection...

              – yckart
              Apr 2 '14 at 15:49













            • Update fixed the problem with script-injection, edited the answer. Should work now...

              – yckart
              Apr 2 '14 at 16:03











            • I 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 7 '17 at 22:59
















            37












            37








            37







            Without extensions



            The only ways (that I know of) to open a bookmark with the keyboard are the following:





            • Using the Bookmark Manager:




              1. Open Bookmark Manager by pressing Ctrl + Shift + O.



              2. 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.




              3. Press Enter.





            • Using Customize and control Google Chrome:




              1. Press Alt + E or Alt + F to open Customize and control Google Chrome.


              2. Press B to enter Bookmarks.


              3. Assuming the desired bookmark is in the Bookmarks Bar, select it with the arrow keys.


              4. Press Enter.





            • Using the Omnibox:




              1. Press Ctrl + L, Alt + D or F6 to focus the Omnibox.


              2. Type (part of) the desired bookmark's name.


              3. When it appears in the drop-down below the Omnibox, select the desired bookmark with the arrow keys.


              4. 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:




            1. Modify the array bookmarks to suit your needs. All letter and number keys should work fine.


            2. Save the code as bookmark-launcher.user.js in a location of your choice.


            3. Open chrome://extensions/ in Google Chrome.


            4. Drag and drop bookmark-launcher.user.js in the open tab.


            5. 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.






            share|improve this answer















            Without extensions



            The only ways (that I know of) to open a bookmark with the keyboard are the following:





            • Using the Bookmark Manager:




              1. Open Bookmark Manager by pressing Ctrl + Shift + O.



              2. 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.




              3. Press Enter.





            • Using Customize and control Google Chrome:




              1. Press Alt + E or Alt + F to open Customize and control Google Chrome.


              2. Press B to enter Bookmarks.


              3. Assuming the desired bookmark is in the Bookmarks Bar, select it with the arrow keys.


              4. Press Enter.





            • Using the Omnibox:




              1. Press Ctrl + L, Alt + D or F6 to focus the Omnibox.


              2. Type (part of) the desired bookmark's name.


              3. When it appears in the drop-down below the Omnibox, select the desired bookmark with the arrow keys.


              4. 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:




            1. Modify the array bookmarks to suit your needs. All letter and number keys should work fine.


            2. Save the code as bookmark-launcher.user.js in a location of your choice.


            3. Open chrome://extensions/ in Google Chrome.


            4. Drag and drop bookmark-launcher.user.js in the open tab.


            5. 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.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Sep 12 '18 at 8:55









            Tarun

            133




            133










            answered Oct 30 '12 at 13:40









            DennisDennis

            41.1k7103136




            41.1k7103136













            • It's working like a charm! Many thanks! :)

              – J.Olufsen
              Oct 30 '12 at 13:52













            • The userscript can't work on some pages (github.com for example), since they don't accept script-injection...

              – yckart
              Apr 2 '14 at 15:49













            • Update fixed the problem with script-injection, edited the answer. Should work now...

              – yckart
              Apr 2 '14 at 16:03











            • I 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 7 '17 at 22:59





















            • It's working like a charm! Many thanks! :)

              – J.Olufsen
              Oct 30 '12 at 13:52













            • The userscript can't work on some pages (github.com for example), since they don't accept script-injection...

              – yckart
              Apr 2 '14 at 15:49













            • Update fixed the problem with script-injection, edited the answer. Should work now...

              – yckart
              Apr 2 '14 at 16:03











            • I 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 7 '17 at 22:59



















            It's working like a charm! Many thanks! :)

            – J.Olufsen
            Oct 30 '12 at 13:52







            It's working like a charm! Many thanks! :)

            – J.Olufsen
            Oct 30 '12 at 13:52















            The userscript can't work on some pages (github.com for example), since they don't accept script-injection...

            – yckart
            Apr 2 '14 at 15:49







            The userscript can't work on some pages (github.com for example), since they don't accept script-injection...

            – yckart
            Apr 2 '14 at 15:49















            Update fixed the problem with script-injection, edited the answer. Should work now...

            – yckart
            Apr 2 '14 at 16:03





            Update fixed the problem with script-injection, edited the answer. Should work now...

            – yckart
            Apr 2 '14 at 16:03













            I 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







            I 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 7 '17 at 22:59







            @tallpaul it looks like now you need to package it as an extension, with manifest.json file, to add it.

            – freginold
            Apr 7 '17 at 22:59















            18














            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.






            share|improve this answer





















            • 10





              Type the full name of the bookmark is not a shortcut, sorry.

              – Kai Noack
              Feb 16 '18 at 13:34






            • 3





              @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)

              – 6005
              Feb 21 '18 at 22:35






            • 1





              Typing 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 3 '18 at 13:26
















            18














            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.






            share|improve this answer





















            • 10





              Type the full name of the bookmark is not a shortcut, sorry.

              – Kai Noack
              Feb 16 '18 at 13:34






            • 3





              @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)

              – 6005
              Feb 21 '18 at 22:35






            • 1





              Typing 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 3 '18 at 13:26














            18












            18








            18







            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.






            share|improve this answer















            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.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Sep 11 '15 at 18:09

























            answered Sep 3 '15 at 0:15









            user508844user508844

            18113




            18113








            • 10





              Type the full name of the bookmark is not a shortcut, sorry.

              – Kai Noack
              Feb 16 '18 at 13:34






            • 3





              @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)

              – 6005
              Feb 21 '18 at 22:35






            • 1





              Typing 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 3 '18 at 13:26














            • 10





              Type the full name of the bookmark is not a shortcut, sorry.

              – Kai Noack
              Feb 16 '18 at 13:34






            • 3





              @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)

              – 6005
              Feb 21 '18 at 22:35






            • 1





              Typing 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 3 '18 at 13:26








            10




            10





            Type the full name of the bookmark is not a shortcut, sorry.

            – Kai Noack
            Feb 16 '18 at 13:34





            Type the full name of the bookmark is not a shortcut, sorry.

            – Kai Noack
            Feb 16 '18 at 13:34




            3




            3





            @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)

            – 6005
            Feb 21 '18 at 22:35





            @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)

            – 6005
            Feb 21 '18 at 22:35




            1




            1





            Typing 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 3 '18 at 13:26





            Typing 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 3 '18 at 13:26











            6














            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/searchEngines to load the list of search engines.

            • In "Other search engines" add a new one with the following parameters:


              • Name: whatever you want, it is not relevant.

              • Keyword: the keyword you want, say SU.

              • URL: the URL you want to set, say http://superuser.com/.




            After saving it, whenever you type SU in your URL bar you will be sent to http://superuser.com/.






            share|improve this answer
























            • love this idea, gist.github.com/Artistan/45fa744b899f4f054173693298d41930

              – Artistan
              Jan 25 '18 at 17:17






            • 1





              One can also rightclick the url bar and select "edit search engines" instead of having to remember the chrome: url

              – Florian Straub
              Feb 7 '18 at 14:36
















            6














            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/searchEngines to load the list of search engines.

            • In "Other search engines" add a new one with the following parameters:


              • Name: whatever you want, it is not relevant.

              • Keyword: the keyword you want, say SU.

              • URL: the URL you want to set, say http://superuser.com/.




            After saving it, whenever you type SU in your URL bar you will be sent to http://superuser.com/.






            share|improve this answer
























            • love this idea, gist.github.com/Artistan/45fa744b899f4f054173693298d41930

              – Artistan
              Jan 25 '18 at 17:17






            • 1





              One can also rightclick the url bar and select "edit search engines" instead of having to remember the chrome: url

              – Florian Straub
              Feb 7 '18 at 14:36














            6












            6








            6







            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/searchEngines to load the list of search engines.

            • In "Other search engines" add a new one with the following parameters:


              • Name: whatever you want, it is not relevant.

              • Keyword: the keyword you want, say SU.

              • URL: the URL you want to set, say http://superuser.com/.




            After saving it, whenever you type SU in your URL bar you will be sent to http://superuser.com/.






            share|improve this answer













            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/searchEngines to load the list of search engines.

            • In "Other search engines" add a new one with the following parameters:


              • Name: whatever you want, it is not relevant.

              • Keyword: the keyword you want, say SU.

              • URL: the URL you want to set, say http://superuser.com/.




            After saving it, whenever you type SU in your URL bar you will be sent to http://superuser.com/.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Jan 11 '17 at 12:41









            fedorquifedorqui

            1,30911128




            1,30911128













            • love this idea, gist.github.com/Artistan/45fa744b899f4f054173693298d41930

              – Artistan
              Jan 25 '18 at 17:17






            • 1





              One can also rightclick the url bar and select "edit search engines" instead of having to remember the chrome: url

              – Florian Straub
              Feb 7 '18 at 14:36



















            • love this idea, gist.github.com/Artistan/45fa744b899f4f054173693298d41930

              – Artistan
              Jan 25 '18 at 17:17






            • 1





              One can also rightclick the url bar and select "edit search engines" instead of having to remember the chrome: url

              – Florian Straub
              Feb 7 '18 at 14:36

















            love this idea, gist.github.com/Artistan/45fa744b899f4f054173693298d41930

            – Artistan
            Jan 25 '18 at 17:17





            love this idea, gist.github.com/Artistan/45fa744b899f4f054173693298d41930

            – Artistan
            Jan 25 '18 at 17:17




            1




            1





            One can also rightclick the url bar and select "edit search engines" instead of having to remember the chrome: url

            – Florian Straub
            Feb 7 '18 at 14:36





            One can also rightclick the url bar and select "edit search engines" instead of having to remember the chrome: url

            – Florian Straub
            Feb 7 '18 at 14:36











            5














            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.





            Shortcuts in Firefox



            To recall how the bookmark properties look like in Firefox and how easily you can assign a keyword (shortcut) to it:



            Firefox keyword field



            In Firefox, now entering "mp" in the URL bar opened the specific website. As you can read in the net, Chrome 52- does not have this simple feature implemented and abuses the "Search engine" section for this.






            share|improve this answer






























              5














              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.





              Shortcuts in Firefox



              To recall how the bookmark properties look like in Firefox and how easily you can assign a keyword (shortcut) to it:



              Firefox keyword field



              In Firefox, now entering "mp" in the URL bar opened the specific website. As you can read in the net, Chrome 52- does not have this simple feature implemented and abuses the "Search engine" section for this.






              share|improve this answer




























                5












                5








                5







                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.





                Shortcuts in Firefox



                To recall how the bookmark properties look like in Firefox and how easily you can assign a keyword (shortcut) to it:



                Firefox keyword field



                In Firefox, now entering "mp" in the URL bar opened the specific website. As you can read in the net, Chrome 52- does not have this simple feature implemented and abuses the "Search engine" section for this.






                share|improve this answer















                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.





                Shortcuts in Firefox



                To recall how the bookmark properties look like in Firefox and how easily you can assign a keyword (shortcut) to it:



                Firefox keyword field



                In Firefox, now entering "mp" in the URL bar opened the specific website. As you can read in the net, Chrome 52- does not have this simple feature implemented and abuses the "Search engine" section for this.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Feb 16 '18 at 13:49

























                answered Aug 16 '16 at 17:56









                Kai NoackKai Noack

                1,08321629




                1,08321629























                    3














                    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.






                    share|improve this answer


























                    • For firefox without using keywords?

                      – SmartManoj
                      Oct 27 '18 at 13:28
















                    3














                    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.






                    share|improve this answer


























                    • For firefox without using keywords?

                      – SmartManoj
                      Oct 27 '18 at 13:28














                    3












                    3








                    3







                    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.






                    share|improve this answer















                    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.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Nov 11 '16 at 8:09

























                    answered Nov 11 '16 at 8:03









                    JohnnyOJohnnyO

                    5052611




                    5052611













                    • For firefox without using keywords?

                      – SmartManoj
                      Oct 27 '18 at 13:28



















                    • For firefox without using keywords?

                      – SmartManoj
                      Oct 27 '18 at 13:28

















                    For firefox without using keywords?

                    – SmartManoj
                    Oct 27 '18 at 13:28





                    For firefox without using keywords?

                    – SmartManoj
                    Oct 27 '18 at 13:28











                    1














                    Try this chrome extention Shortkeys (Custom Keyboard Shortcuts) provided by Mike Crittenden.



                    shortcut






                    share|improve this answer




























                      1














                      Try this chrome extention Shortkeys (Custom Keyboard Shortcuts) provided by Mike Crittenden.



                      shortcut






                      share|improve this answer


























                        1












                        1








                        1







                        Try this chrome extention Shortkeys (Custom Keyboard Shortcuts) provided by Mike Crittenden.



                        shortcut






                        share|improve this answer













                        Try this chrome extention Shortkeys (Custom Keyboard Shortcuts) provided by Mike Crittenden.



                        shortcut







                        share|improve this answer












                        share|improve this answer



                        share|improve this answer










                        answered Oct 22 '16 at 5:21









                        Mr. ReeMr. Ree

                        1193




                        1193























                            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.




                            1. Right click the address bar (omnibar)

                            2. Select edit search engines...

                            3. Click on 'ADD' - which appears after the default search engines section

                            4. 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/






                            share|improve this answer






























                              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.




                              1. Right click the address bar (omnibar)

                              2. Select edit search engines...

                              3. Click on 'ADD' - which appears after the default search engines section

                              4. 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/






                              share|improve this answer




























                                1












                                1








                                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.




                                1. Right click the address bar (omnibar)

                                2. Select edit search engines...

                                3. Click on 'ADD' - which appears after the default search engines section

                                4. 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/






                                share|improve this answer















                                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.




                                1. Right click the address bar (omnibar)

                                2. Select edit search engines...

                                3. Click on 'ADD' - which appears after the default search engines section

                                4. 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/







                                share|improve this answer














                                share|improve this answer



                                share|improve this answer








                                edited Jul 31 '17 at 15:55

























                                answered Jul 31 '17 at 15:40









                                jaysenjaysen

                                113




                                113























                                    0














                                    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.






                                    share|improve this answer





















                                    • 1





                                      what does this do?

                                      – Sathyajith Bhat
                                      May 25 '14 at 17:38
















                                    0














                                    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.






                                    share|improve this answer





















                                    • 1





                                      what does this do?

                                      – Sathyajith Bhat
                                      May 25 '14 at 17:38














                                    0












                                    0








                                    0







                                    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.






                                    share|improve this answer















                                    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.







                                    share|improve this answer














                                    share|improve this answer



                                    share|improve this answer








                                    edited May 25 '14 at 17:58









                                    ᔕᖺᘎᕊ

                                    5,27842441




                                    5,27842441










                                    answered May 25 '14 at 17:05









                                    Sunil Kumar SVSunil Kumar SV

                                    11




                                    11








                                    • 1





                                      what does this do?

                                      – Sathyajith Bhat
                                      May 25 '14 at 17:38














                                    • 1





                                      what does this do?

                                      – Sathyajith Bhat
                                      May 25 '14 at 17:38








                                    1




                                    1





                                    what does this do?

                                    – Sathyajith Bhat
                                    May 25 '14 at 17:38





                                    what does this do?

                                    – Sathyajith Bhat
                                    May 25 '14 at 17:38











                                    0














                                    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.json and background.js. Put them into a new folder and add the content below to those files.

                                    • Within chrome, type chrome://extensions in the address bar and activate developer mode on the top right (switch).

                                    • Click on the Load unpacked button 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);
                                    }
                                    }
                                    }





                                    share|improve this answer






























                                      0














                                      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.json and background.js. Put them into a new folder and add the content below to those files.

                                      • Within chrome, type chrome://extensions in the address bar and activate developer mode on the top right (switch).

                                      • Click on the Load unpacked button 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);
                                      }
                                      }
                                      }





                                      share|improve this answer




























                                        0












                                        0








                                        0







                                        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.json and background.js. Put them into a new folder and add the content below to those files.

                                        • Within chrome, type chrome://extensions in the address bar and activate developer mode on the top right (switch).

                                        • Click on the Load unpacked button 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);
                                        }
                                        }
                                        }





                                        share|improve this answer















                                        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.json and background.js. Put them into a new folder and add the content below to those files.

                                        • Within chrome, type chrome://extensions in the address bar and activate developer mode on the top right (switch).

                                        • Click on the Load unpacked button 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);
                                        }
                                        }
                                        }






                                        share|improve this answer














                                        share|improve this answer



                                        share|improve this answer








                                        edited Apr 22 '18 at 10:29

























                                        answered Apr 14 '18 at 9:31









                                        codeplebcodepleb

                                        4201818




                                        4201818























                                            0














                                            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.






                                            share|improve this answer
























                                            • 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


















                                            0














                                            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.






                                            share|improve this answer
























                                            • 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
















                                            0












                                            0








                                            0







                                            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.






                                            share|improve this answer













                                            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.







                                            share|improve this answer












                                            share|improve this answer



                                            share|improve this answer










                                            answered May 19 '18 at 15:07









                                            AchernarAchernar

                                            1




                                            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





















                                            • 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



















                                            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







                                            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













                                            0














                                            An easily accessible fuzzy search over your Chrome bookmarks:




                                            1. In order to search the bookmarks, activate Vimium chrome extension's "Vomnibar" with b key from any webpage.



                                            2. 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
                                              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






                                            share|improve this answer






























                                              0














                                              An easily accessible fuzzy search over your Chrome bookmarks:




                                              1. In order to search the bookmarks, activate Vimium chrome extension's "Vomnibar" with b key from any webpage.



                                              2. 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
                                                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






                                              share|improve this answer




























                                                0












                                                0








                                                0







                                                An easily accessible fuzzy search over your Chrome bookmarks:




                                                1. In order to search the bookmarks, activate Vimium chrome extension's "Vomnibar" with b key from any webpage.



                                                2. 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
                                                  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






                                                share|improve this answer















                                                An easily accessible fuzzy search over your Chrome bookmarks:




                                                1. In order to search the bookmarks, activate Vimium chrome extension's "Vomnibar" with b key from any webpage.



                                                2. 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
                                                  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







                                                share|improve this answer














                                                share|improve this answer



                                                share|improve this answer








                                                edited Mar 7 at 10:33

























                                                answered Mar 7 at 10:01









                                                HopeHope

                                                14914




                                                14914






























                                                    draft saved

                                                    draft discarded




















































                                                    Thanks for contributing an answer to Super User!


                                                    • Please be sure to answer the question. Provide details and share your research!

                                                    But avoid



                                                    • Asking for help, clarification, or responding to other answers.

                                                    • Making statements based on opinion; back them up with references or personal experience.


                                                    To learn more, see our tips on writing great answers.




                                                    draft saved


                                                    draft discarded














                                                    StackExchange.ready(
                                                    function () {
                                                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f496212%2fshortcut-to-open-specific-bookmark-url-in-chrome%23new-answer', 'question_page');
                                                    }
                                                    );

                                                    Post as a guest















                                                    Required, but never shown





















































                                                    Required, but never shown














                                                    Required, but never shown












                                                    Required, but never shown







                                                    Required, but never shown

































                                                    Required, but never shown














                                                    Required, but never shown












                                                    Required, but never shown







                                                    Required, but never shown







                                                    Popular posts from this blog

                                                    How do I know what Microsoft account the skydrive app is syncing to?

                                                    Grease: Live!

                                                    When does type information flow backwards in C++?