Is there a shortcut key to duplicate a tab in Google Chrome?












47















Is there a keyboard shortcut to duplicate a tab in Google Chrome?



I've read through all the replies in the Google Chrome Forum thread, but there's no hope there.



The only hope I get from that page is:




Next update for Chrome should
definitely include a duplicate
shortcut.











share|improve this question















migrated from webapps.stackexchange.com May 16 '11 at 7:30


This question came from our site for power users of web applications.



















  • shortcut now available. see my answer below.

    – cwd
    Apr 6 '13 at 17:29
















47















Is there a keyboard shortcut to duplicate a tab in Google Chrome?



I've read through all the replies in the Google Chrome Forum thread, but there's no hope there.



The only hope I get from that page is:




Next update for Chrome should
definitely include a duplicate
shortcut.











share|improve this question















migrated from webapps.stackexchange.com May 16 '11 at 7:30


This question came from our site for power users of web applications.



















  • shortcut now available. see my answer below.

    – cwd
    Apr 6 '13 at 17:29














47












47








47


8






Is there a keyboard shortcut to duplicate a tab in Google Chrome?



I've read through all the replies in the Google Chrome Forum thread, but there's no hope there.



The only hope I get from that page is:




Next update for Chrome should
definitely include a duplicate
shortcut.











share|improve this question
















Is there a keyboard shortcut to duplicate a tab in Google Chrome?



I've read through all the replies in the Google Chrome Forum thread, but there's no hope there.



The only hope I get from that page is:




Next update for Chrome should
definitely include a duplicate
shortcut.








google-chrome keyboard-shortcuts






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 26 '16 at 20:40









Ben N

29.5k1398144




29.5k1398144










asked May 15 '11 at 17:03









PacerierPacerier

11.1k62152242




11.1k62152242




migrated from webapps.stackexchange.com May 16 '11 at 7:30


This question came from our site for power users of web applications.









migrated from webapps.stackexchange.com May 16 '11 at 7:30


This question came from our site for power users of web applications.















  • shortcut now available. see my answer below.

    – cwd
    Apr 6 '13 at 17:29



















  • shortcut now available. see my answer below.

    – cwd
    Apr 6 '13 at 17:29

















shortcut now available. see my answer below.

– cwd
Apr 6 '13 at 17:29





shortcut now available. see my answer below.

– cwd
Apr 6 '13 at 17:29










13 Answers
13






active

oldest

votes


















31














There is not currently a keyboard shortcut to duplicate a tab in Google Chrome (see a list of keyboard shortcuts). However, it looks like Chrome may soon enable support for extensions to duplicate tabs, which means you might soon be able to find a Chrome extension that can duplicate a tab through a keyboard shortcut. Currently, all of the extensions that show up in the store don't preserve history.



Non-keyboard-wise, there are two ways you can duplicate a tab: either middle-click on the refresh button, or right-click on a tab and choose "Duplicate" from the menu:



Chrome screenshot






share|improve this answer
























  • Weird it doesn't work for me on my new mouse.

    – Pacerier
    Mar 12 '12 at 8:12













  • Middle click on refresh works in Firefox, too!

    – Rob
    Apr 19 '12 at 14:44











  • on mac try the bettertouchtool - boastr.de this is working for me to simulate middle click with track pad, so i can use the refresh button trick

    – chrismarx
    May 4 '12 at 17:13






  • 7





    On a magic mouse or trackpad, you can use ⌘ + click on the refresh button.

    – Lance Fisher
    Jun 7 '12 at 23:44











  • @LanceFisher, It doesn't work on Windows.

    – Pacerier
    May 24 '15 at 21:13



















20














The Duplicate Tab Shortcut Key extension allows native duplicate tab functionality with a customizable shortcut key.



Using the extension allows you to duplicate a tab with the browser's built in functionality so the history is preserved and the page isn't reloaded.



screenshot



The tab key is customizable using Chrome's API - the extension doesn't just monitor each tab's DOM for the shortcut key event as some of the other extensions do.



The extension comes with fairly thorough documentation.






share|improve this answer


























  • +1, Good solution, but I'd rather not install an extension for a simple functionality when a simpler alternative (the usual "right click -> duplicate") exist.

    – Pacerier
    Jun 9 '15 at 8:23



















19














You can just press Alt+D then Alt+Enter. You don't even need to let go of the Alt key.






share|improve this answer





















  • 9





    That is not the same as a true duplicate. It reloads the page whereas a true duplicate doesn't (if we scroll halfway through the page, we need to re-scroll)

    – Pacerier
    Mar 17 '13 at 5:18






  • 9





    The "history" (back and forward state) and scroll state are not duplicated

    – Pratik Butani
    Jul 24 '14 at 7:29






  • 3





    @PratikButani, The post state too (the one whereby you can resubmit on refresh).

    – Pacerier
    May 24 '15 at 21:19






  • 2





    Also CTRL+L then Alt+Enter

    – Francisco Aguilera
    Dec 14 '16 at 15:30



















5














I wrote a simple script for autohotkey if anyone is interested. Just paste this into notepad and save as "scriptname.ahk" then double click it (make sure you have autohotkey installed)



!t is alt+t, change it to whatever shortcut you need



!t::
Send {Esc}
MouseGetPos, X, Y
MouseClick, M, 75, 45,,0
MouseMove, X, Y, 0
return


edit: sorry put this little line before it to only have this work in chrome so it doesn't mess up your other shortcuts



#IfWinActive, ahk_class Chrome_WidgetWin_0
!t::
Send {Esc}
MouseGetPos, X, Y
MouseClick, M, 75, 45,,0
MouseMove, X, Y, 0
return





share|improve this answer

































    3














    It can be done as follows:



    CTRL + L (Takes the cursor to the address bar)
    ALT + ENTER (Opens a new tab with this url)


    This looks as a good work around to me..



    I referred: http://lifehacker.com/5387881/duplicate-a-google-chrome-tab-with-a-shortcut-key
    for this solution.



    Hope it helps!!!






    share|improve this answer



















    • 3





      This isn't a true duplicate. For example, if you scrolled halfway through the document, the state isn't saved.

      – Pacerier
      May 14 '13 at 12:33






    • 1





      whatever it's better than to do it with mouse

      – Tebe
      Jul 1 '15 at 6:55



















    2














    Yes and no. It's not a definite "Duplicated Tab". It's a two step process.



    For Mac OS



    Press Command+L to set the focus on the address bar and then press either:



    Option+Return to duplicate the tab into a new tab, or



    Shift+Return to duplicate the tab into a new window.



    For Windows



    Press Ctrl+L to set the focus on the address bar and then press Alt+Enter to duplicate the tab into a new tab.






    share|improve this answer


























    • This does not add any new information to existing answers, except the "Shift+Return" part.

      – Vylix
      Jul 4 '17 at 19:28











    • You are repeating other answer

      – yass
      Jul 4 '17 at 19:36



















    1














    Maybe you can use the Smoothe Mouse Gestures add on to create a shortcut with a mouse gesture.






    share|improve this answer































      1














      I read this question yesterday, and have just found a possible solution, that doesn't require a plugin, though it is not a keyboard shortcut as your question asked!



      If you middle click (push the scroll wheel down) on the back button this opens a new tab with the same history, admittedly you are one step back in your history, but it is a duplicate.






      share|improve this answer
























      • read Jared Harley's ans

        – Pacerier
        May 19 '11 at 6:55



















      0














      The address bar select + enter trick on OS X (not a "true duplicate", but close enough for me):



      command+L command+enter



      Thanks to https://superuser.com/a/310162/127024.






      share|improve this answer

































        0














        My favorite shortcut for duplicating a tab is as follows: alt+D+enter1.



        Some other commands/series of commands are as follows:





        • ctrl+L2alt+D


        • f6alt+enter


        As you may notice, these commands all put the focus on the omnibox whereupon you use alt+enter to "duplicate" the tab. Unfortunately, however, all of the said commands make use of alt+enter, which is not a true tab duplication command, but rather one which opens the same website in a separate tab (usually does not store current data such as your scroll-position and text typed into text-boxes).



        1 If you are the technical type, however, you may want to know that this is actually a mashup of alt+D and alt+enter



        2ctrl+L might be interpreted by the computer as a command to insert a link (in a text box).






        share|improve this answer































          0














          On MacOS, you can do Cmd + L then Enter. It opens a duplicate tab at the end of tabs.



          To open one right next to current one, I haven't found a shortcut key for it. Using mouse, you can do Cmd + click the Refresh button as mentioned above.






          share|improve this answer































            -2














            I just click the Location/Address to select the whole thing, Ctrl-C to copy it, Ctrl-T to open a new tab, click in the new Location/Address, Ctrl-V to paste, and Enter to load a copy.






            share|improve this answer



















            • 4





              but that doesn't preserve the history and everything else. it effectively on opens a new tab with the current page (unlike duplicate tab)

              – Pacerier
              May 17 '11 at 6:12











            • sorry, but this isn't an answer to the question. it's not a duplicate. A duplicate retains history, position, etc. And it adds more steps. If the OP didn't want to save steps (at least 3 steps that you've described), then right-click > duplicate on the tab is much faster and less steps in the first place.

              – Flak DiNenno
              Jul 14 '14 at 18:13



















            -2














            You may try F6 and press Alt+Enter.






            share|improve this answer
























            • This only creates a new page, the "history" (back and forward state) and scroll state are not duplicated

              – Pacerier
              Jul 24 '14 at 7:12











            • ALT+D+Enter is also same work.

              – Pratik Butani
              Jul 24 '14 at 7:27











            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%2f284115%2fis-there-a-shortcut-key-to-duplicate-a-tab-in-google-chrome%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            13 Answers
            13






            active

            oldest

            votes








            13 Answers
            13






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            31














            There is not currently a keyboard shortcut to duplicate a tab in Google Chrome (see a list of keyboard shortcuts). However, it looks like Chrome may soon enable support for extensions to duplicate tabs, which means you might soon be able to find a Chrome extension that can duplicate a tab through a keyboard shortcut. Currently, all of the extensions that show up in the store don't preserve history.



            Non-keyboard-wise, there are two ways you can duplicate a tab: either middle-click on the refresh button, or right-click on a tab and choose "Duplicate" from the menu:



            Chrome screenshot






            share|improve this answer
























            • Weird it doesn't work for me on my new mouse.

              – Pacerier
              Mar 12 '12 at 8:12













            • Middle click on refresh works in Firefox, too!

              – Rob
              Apr 19 '12 at 14:44











            • on mac try the bettertouchtool - boastr.de this is working for me to simulate middle click with track pad, so i can use the refresh button trick

              – chrismarx
              May 4 '12 at 17:13






            • 7





              On a magic mouse or trackpad, you can use ⌘ + click on the refresh button.

              – Lance Fisher
              Jun 7 '12 at 23:44











            • @LanceFisher, It doesn't work on Windows.

              – Pacerier
              May 24 '15 at 21:13
















            31














            There is not currently a keyboard shortcut to duplicate a tab in Google Chrome (see a list of keyboard shortcuts). However, it looks like Chrome may soon enable support for extensions to duplicate tabs, which means you might soon be able to find a Chrome extension that can duplicate a tab through a keyboard shortcut. Currently, all of the extensions that show up in the store don't preserve history.



            Non-keyboard-wise, there are two ways you can duplicate a tab: either middle-click on the refresh button, or right-click on a tab and choose "Duplicate" from the menu:



            Chrome screenshot






            share|improve this answer
























            • Weird it doesn't work for me on my new mouse.

              – Pacerier
              Mar 12 '12 at 8:12













            • Middle click on refresh works in Firefox, too!

              – Rob
              Apr 19 '12 at 14:44











            • on mac try the bettertouchtool - boastr.de this is working for me to simulate middle click with track pad, so i can use the refresh button trick

              – chrismarx
              May 4 '12 at 17:13






            • 7





              On a magic mouse or trackpad, you can use ⌘ + click on the refresh button.

              – Lance Fisher
              Jun 7 '12 at 23:44











            • @LanceFisher, It doesn't work on Windows.

              – Pacerier
              May 24 '15 at 21:13














            31












            31








            31







            There is not currently a keyboard shortcut to duplicate a tab in Google Chrome (see a list of keyboard shortcuts). However, it looks like Chrome may soon enable support for extensions to duplicate tabs, which means you might soon be able to find a Chrome extension that can duplicate a tab through a keyboard shortcut. Currently, all of the extensions that show up in the store don't preserve history.



            Non-keyboard-wise, there are two ways you can duplicate a tab: either middle-click on the refresh button, or right-click on a tab and choose "Duplicate" from the menu:



            Chrome screenshot






            share|improve this answer













            There is not currently a keyboard shortcut to duplicate a tab in Google Chrome (see a list of keyboard shortcuts). However, it looks like Chrome may soon enable support for extensions to duplicate tabs, which means you might soon be able to find a Chrome extension that can duplicate a tab through a keyboard shortcut. Currently, all of the extensions that show up in the store don't preserve history.



            Non-keyboard-wise, there are two ways you can duplicate a tab: either middle-click on the refresh button, or right-click on a tab and choose "Duplicate" from the menu:



            Chrome screenshot







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered May 17 '11 at 6:58









            Jared HarleyJared Harley

            11.4k33249




            11.4k33249













            • Weird it doesn't work for me on my new mouse.

              – Pacerier
              Mar 12 '12 at 8:12













            • Middle click on refresh works in Firefox, too!

              – Rob
              Apr 19 '12 at 14:44











            • on mac try the bettertouchtool - boastr.de this is working for me to simulate middle click with track pad, so i can use the refresh button trick

              – chrismarx
              May 4 '12 at 17:13






            • 7





              On a magic mouse or trackpad, you can use ⌘ + click on the refresh button.

              – Lance Fisher
              Jun 7 '12 at 23:44











            • @LanceFisher, It doesn't work on Windows.

              – Pacerier
              May 24 '15 at 21:13



















            • Weird it doesn't work for me on my new mouse.

              – Pacerier
              Mar 12 '12 at 8:12













            • Middle click on refresh works in Firefox, too!

              – Rob
              Apr 19 '12 at 14:44











            • on mac try the bettertouchtool - boastr.de this is working for me to simulate middle click with track pad, so i can use the refresh button trick

              – chrismarx
              May 4 '12 at 17:13






            • 7





              On a magic mouse or trackpad, you can use ⌘ + click on the refresh button.

              – Lance Fisher
              Jun 7 '12 at 23:44











            • @LanceFisher, It doesn't work on Windows.

              – Pacerier
              May 24 '15 at 21:13

















            Weird it doesn't work for me on my new mouse.

            – Pacerier
            Mar 12 '12 at 8:12







            Weird it doesn't work for me on my new mouse.

            – Pacerier
            Mar 12 '12 at 8:12















            Middle click on refresh works in Firefox, too!

            – Rob
            Apr 19 '12 at 14:44





            Middle click on refresh works in Firefox, too!

            – Rob
            Apr 19 '12 at 14:44













            on mac try the bettertouchtool - boastr.de this is working for me to simulate middle click with track pad, so i can use the refresh button trick

            – chrismarx
            May 4 '12 at 17:13





            on mac try the bettertouchtool - boastr.de this is working for me to simulate middle click with track pad, so i can use the refresh button trick

            – chrismarx
            May 4 '12 at 17:13




            7




            7





            On a magic mouse or trackpad, you can use ⌘ + click on the refresh button.

            – Lance Fisher
            Jun 7 '12 at 23:44





            On a magic mouse or trackpad, you can use ⌘ + click on the refresh button.

            – Lance Fisher
            Jun 7 '12 at 23:44













            @LanceFisher, It doesn't work on Windows.

            – Pacerier
            May 24 '15 at 21:13





            @LanceFisher, It doesn't work on Windows.

            – Pacerier
            May 24 '15 at 21:13













            20














            The Duplicate Tab Shortcut Key extension allows native duplicate tab functionality with a customizable shortcut key.



            Using the extension allows you to duplicate a tab with the browser's built in functionality so the history is preserved and the page isn't reloaded.



            screenshot



            The tab key is customizable using Chrome's API - the extension doesn't just monitor each tab's DOM for the shortcut key event as some of the other extensions do.



            The extension comes with fairly thorough documentation.






            share|improve this answer


























            • +1, Good solution, but I'd rather not install an extension for a simple functionality when a simpler alternative (the usual "right click -> duplicate") exist.

              – Pacerier
              Jun 9 '15 at 8:23
















            20














            The Duplicate Tab Shortcut Key extension allows native duplicate tab functionality with a customizable shortcut key.



            Using the extension allows you to duplicate a tab with the browser's built in functionality so the history is preserved and the page isn't reloaded.



            screenshot



            The tab key is customizable using Chrome's API - the extension doesn't just monitor each tab's DOM for the shortcut key event as some of the other extensions do.



            The extension comes with fairly thorough documentation.






            share|improve this answer


























            • +1, Good solution, but I'd rather not install an extension for a simple functionality when a simpler alternative (the usual "right click -> duplicate") exist.

              – Pacerier
              Jun 9 '15 at 8:23














            20












            20








            20







            The Duplicate Tab Shortcut Key extension allows native duplicate tab functionality with a customizable shortcut key.



            Using the extension allows you to duplicate a tab with the browser's built in functionality so the history is preserved and the page isn't reloaded.



            screenshot



            The tab key is customizable using Chrome's API - the extension doesn't just monitor each tab's DOM for the shortcut key event as some of the other extensions do.



            The extension comes with fairly thorough documentation.






            share|improve this answer















            The Duplicate Tab Shortcut Key extension allows native duplicate tab functionality with a customizable shortcut key.



            Using the extension allows you to duplicate a tab with the browser's built in functionality so the history is preserved and the page isn't reloaded.



            screenshot



            The tab key is customizable using Chrome's API - the extension doesn't just monitor each tab's DOM for the shortcut key event as some of the other extensions do.



            The extension comes with fairly thorough documentation.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 29 '15 at 16:46









            RAnders00

            2071219




            2071219










            answered Apr 6 '13 at 17:27









            cwdcwd

            6,0283695143




            6,0283695143













            • +1, Good solution, but I'd rather not install an extension for a simple functionality when a simpler alternative (the usual "right click -> duplicate") exist.

              – Pacerier
              Jun 9 '15 at 8:23



















            • +1, Good solution, but I'd rather not install an extension for a simple functionality when a simpler alternative (the usual "right click -> duplicate") exist.

              – Pacerier
              Jun 9 '15 at 8:23

















            +1, Good solution, but I'd rather not install an extension for a simple functionality when a simpler alternative (the usual "right click -> duplicate") exist.

            – Pacerier
            Jun 9 '15 at 8:23





            +1, Good solution, but I'd rather not install an extension for a simple functionality when a simpler alternative (the usual "right click -> duplicate") exist.

            – Pacerier
            Jun 9 '15 at 8:23











            19














            You can just press Alt+D then Alt+Enter. You don't even need to let go of the Alt key.






            share|improve this answer





















            • 9





              That is not the same as a true duplicate. It reloads the page whereas a true duplicate doesn't (if we scroll halfway through the page, we need to re-scroll)

              – Pacerier
              Mar 17 '13 at 5:18






            • 9





              The "history" (back and forward state) and scroll state are not duplicated

              – Pratik Butani
              Jul 24 '14 at 7:29






            • 3





              @PratikButani, The post state too (the one whereby you can resubmit on refresh).

              – Pacerier
              May 24 '15 at 21:19






            • 2





              Also CTRL+L then Alt+Enter

              – Francisco Aguilera
              Dec 14 '16 at 15:30
















            19














            You can just press Alt+D then Alt+Enter. You don't even need to let go of the Alt key.






            share|improve this answer





















            • 9





              That is not the same as a true duplicate. It reloads the page whereas a true duplicate doesn't (if we scroll halfway through the page, we need to re-scroll)

              – Pacerier
              Mar 17 '13 at 5:18






            • 9





              The "history" (back and forward state) and scroll state are not duplicated

              – Pratik Butani
              Jul 24 '14 at 7:29






            • 3





              @PratikButani, The post state too (the one whereby you can resubmit on refresh).

              – Pacerier
              May 24 '15 at 21:19






            • 2





              Also CTRL+L then Alt+Enter

              – Francisco Aguilera
              Dec 14 '16 at 15:30














            19












            19








            19







            You can just press Alt+D then Alt+Enter. You don't even need to let go of the Alt key.






            share|improve this answer















            You can just press Alt+D then Alt+Enter. You don't even need to let go of the Alt key.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Mar 17 '13 at 5:44









            Indrek

            20.6k117484




            20.6k117484










            answered Mar 17 '13 at 5:16









            JezJez

            30723




            30723








            • 9





              That is not the same as a true duplicate. It reloads the page whereas a true duplicate doesn't (if we scroll halfway through the page, we need to re-scroll)

              – Pacerier
              Mar 17 '13 at 5:18






            • 9





              The "history" (back and forward state) and scroll state are not duplicated

              – Pratik Butani
              Jul 24 '14 at 7:29






            • 3





              @PratikButani, The post state too (the one whereby you can resubmit on refresh).

              – Pacerier
              May 24 '15 at 21:19






            • 2





              Also CTRL+L then Alt+Enter

              – Francisco Aguilera
              Dec 14 '16 at 15:30














            • 9





              That is not the same as a true duplicate. It reloads the page whereas a true duplicate doesn't (if we scroll halfway through the page, we need to re-scroll)

              – Pacerier
              Mar 17 '13 at 5:18






            • 9





              The "history" (back and forward state) and scroll state are not duplicated

              – Pratik Butani
              Jul 24 '14 at 7:29






            • 3





              @PratikButani, The post state too (the one whereby you can resubmit on refresh).

              – Pacerier
              May 24 '15 at 21:19






            • 2





              Also CTRL+L then Alt+Enter

              – Francisco Aguilera
              Dec 14 '16 at 15:30








            9




            9





            That is not the same as a true duplicate. It reloads the page whereas a true duplicate doesn't (if we scroll halfway through the page, we need to re-scroll)

            – Pacerier
            Mar 17 '13 at 5:18





            That is not the same as a true duplicate. It reloads the page whereas a true duplicate doesn't (if we scroll halfway through the page, we need to re-scroll)

            – Pacerier
            Mar 17 '13 at 5:18




            9




            9





            The "history" (back and forward state) and scroll state are not duplicated

            – Pratik Butani
            Jul 24 '14 at 7:29





            The "history" (back and forward state) and scroll state are not duplicated

            – Pratik Butani
            Jul 24 '14 at 7:29




            3




            3





            @PratikButani, The post state too (the one whereby you can resubmit on refresh).

            – Pacerier
            May 24 '15 at 21:19





            @PratikButani, The post state too (the one whereby you can resubmit on refresh).

            – Pacerier
            May 24 '15 at 21:19




            2




            2





            Also CTRL+L then Alt+Enter

            – Francisco Aguilera
            Dec 14 '16 at 15:30





            Also CTRL+L then Alt+Enter

            – Francisco Aguilera
            Dec 14 '16 at 15:30











            5














            I wrote a simple script for autohotkey if anyone is interested. Just paste this into notepad and save as "scriptname.ahk" then double click it (make sure you have autohotkey installed)



            !t is alt+t, change it to whatever shortcut you need



            !t::
            Send {Esc}
            MouseGetPos, X, Y
            MouseClick, M, 75, 45,,0
            MouseMove, X, Y, 0
            return


            edit: sorry put this little line before it to only have this work in chrome so it doesn't mess up your other shortcuts



            #IfWinActive, ahk_class Chrome_WidgetWin_0
            !t::
            Send {Esc}
            MouseGetPos, X, Y
            MouseClick, M, 75, 45,,0
            MouseMove, X, Y, 0
            return





            share|improve this answer






























              5














              I wrote a simple script for autohotkey if anyone is interested. Just paste this into notepad and save as "scriptname.ahk" then double click it (make sure you have autohotkey installed)



              !t is alt+t, change it to whatever shortcut you need



              !t::
              Send {Esc}
              MouseGetPos, X, Y
              MouseClick, M, 75, 45,,0
              MouseMove, X, Y, 0
              return


              edit: sorry put this little line before it to only have this work in chrome so it doesn't mess up your other shortcuts



              #IfWinActive, ahk_class Chrome_WidgetWin_0
              !t::
              Send {Esc}
              MouseGetPos, X, Y
              MouseClick, M, 75, 45,,0
              MouseMove, X, Y, 0
              return





              share|improve this answer




























                5












                5








                5







                I wrote a simple script for autohotkey if anyone is interested. Just paste this into notepad and save as "scriptname.ahk" then double click it (make sure you have autohotkey installed)



                !t is alt+t, change it to whatever shortcut you need



                !t::
                Send {Esc}
                MouseGetPos, X, Y
                MouseClick, M, 75, 45,,0
                MouseMove, X, Y, 0
                return


                edit: sorry put this little line before it to only have this work in chrome so it doesn't mess up your other shortcuts



                #IfWinActive, ahk_class Chrome_WidgetWin_0
                !t::
                Send {Esc}
                MouseGetPos, X, Y
                MouseClick, M, 75, 45,,0
                MouseMove, X, Y, 0
                return





                share|improve this answer















                I wrote a simple script for autohotkey if anyone is interested. Just paste this into notepad and save as "scriptname.ahk" then double click it (make sure you have autohotkey installed)



                !t is alt+t, change it to whatever shortcut you need



                !t::
                Send {Esc}
                MouseGetPos, X, Y
                MouseClick, M, 75, 45,,0
                MouseMove, X, Y, 0
                return


                edit: sorry put this little line before it to only have this work in chrome so it doesn't mess up your other shortcuts



                #IfWinActive, ahk_class Chrome_WidgetWin_0
                !t::
                Send {Esc}
                MouseGetPos, X, Y
                MouseClick, M, 75, 45,,0
                MouseMove, X, Y, 0
                return






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Apr 19 '12 at 16:47

























                answered Apr 19 '12 at 14:39









                RabbitRabbit

                5112




                5112























                    3














                    It can be done as follows:



                    CTRL + L (Takes the cursor to the address bar)
                    ALT + ENTER (Opens a new tab with this url)


                    This looks as a good work around to me..



                    I referred: http://lifehacker.com/5387881/duplicate-a-google-chrome-tab-with-a-shortcut-key
                    for this solution.



                    Hope it helps!!!






                    share|improve this answer



















                    • 3





                      This isn't a true duplicate. For example, if you scrolled halfway through the document, the state isn't saved.

                      – Pacerier
                      May 14 '13 at 12:33






                    • 1





                      whatever it's better than to do it with mouse

                      – Tebe
                      Jul 1 '15 at 6:55
















                    3














                    It can be done as follows:



                    CTRL + L (Takes the cursor to the address bar)
                    ALT + ENTER (Opens a new tab with this url)


                    This looks as a good work around to me..



                    I referred: http://lifehacker.com/5387881/duplicate-a-google-chrome-tab-with-a-shortcut-key
                    for this solution.



                    Hope it helps!!!






                    share|improve this answer



















                    • 3





                      This isn't a true duplicate. For example, if you scrolled halfway through the document, the state isn't saved.

                      – Pacerier
                      May 14 '13 at 12:33






                    • 1





                      whatever it's better than to do it with mouse

                      – Tebe
                      Jul 1 '15 at 6:55














                    3












                    3








                    3







                    It can be done as follows:



                    CTRL + L (Takes the cursor to the address bar)
                    ALT + ENTER (Opens a new tab with this url)


                    This looks as a good work around to me..



                    I referred: http://lifehacker.com/5387881/duplicate-a-google-chrome-tab-with-a-shortcut-key
                    for this solution.



                    Hope it helps!!!






                    share|improve this answer













                    It can be done as follows:



                    CTRL + L (Takes the cursor to the address bar)
                    ALT + ENTER (Opens a new tab with this url)


                    This looks as a good work around to me..



                    I referred: http://lifehacker.com/5387881/duplicate-a-google-chrome-tab-with-a-shortcut-key
                    for this solution.



                    Hope it helps!!!







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered May 13 '13 at 16:49









                    Mohd FaridMohd Farid

                    1473




                    1473








                    • 3





                      This isn't a true duplicate. For example, if you scrolled halfway through the document, the state isn't saved.

                      – Pacerier
                      May 14 '13 at 12:33






                    • 1





                      whatever it's better than to do it with mouse

                      – Tebe
                      Jul 1 '15 at 6:55














                    • 3





                      This isn't a true duplicate. For example, if you scrolled halfway through the document, the state isn't saved.

                      – Pacerier
                      May 14 '13 at 12:33






                    • 1





                      whatever it's better than to do it with mouse

                      – Tebe
                      Jul 1 '15 at 6:55








                    3




                    3





                    This isn't a true duplicate. For example, if you scrolled halfway through the document, the state isn't saved.

                    – Pacerier
                    May 14 '13 at 12:33





                    This isn't a true duplicate. For example, if you scrolled halfway through the document, the state isn't saved.

                    – Pacerier
                    May 14 '13 at 12:33




                    1




                    1





                    whatever it's better than to do it with mouse

                    – Tebe
                    Jul 1 '15 at 6:55





                    whatever it's better than to do it with mouse

                    – Tebe
                    Jul 1 '15 at 6:55











                    2














                    Yes and no. It's not a definite "Duplicated Tab". It's a two step process.



                    For Mac OS



                    Press Command+L to set the focus on the address bar and then press either:



                    Option+Return to duplicate the tab into a new tab, or



                    Shift+Return to duplicate the tab into a new window.



                    For Windows



                    Press Ctrl+L to set the focus on the address bar and then press Alt+Enter to duplicate the tab into a new tab.






                    share|improve this answer


























                    • This does not add any new information to existing answers, except the "Shift+Return" part.

                      – Vylix
                      Jul 4 '17 at 19:28











                    • You are repeating other answer

                      – yass
                      Jul 4 '17 at 19:36
















                    2














                    Yes and no. It's not a definite "Duplicated Tab". It's a two step process.



                    For Mac OS



                    Press Command+L to set the focus on the address bar and then press either:



                    Option+Return to duplicate the tab into a new tab, or



                    Shift+Return to duplicate the tab into a new window.



                    For Windows



                    Press Ctrl+L to set the focus on the address bar and then press Alt+Enter to duplicate the tab into a new tab.






                    share|improve this answer


























                    • This does not add any new information to existing answers, except the "Shift+Return" part.

                      – Vylix
                      Jul 4 '17 at 19:28











                    • You are repeating other answer

                      – yass
                      Jul 4 '17 at 19:36














                    2












                    2








                    2







                    Yes and no. It's not a definite "Duplicated Tab". It's a two step process.



                    For Mac OS



                    Press Command+L to set the focus on the address bar and then press either:



                    Option+Return to duplicate the tab into a new tab, or



                    Shift+Return to duplicate the tab into a new window.



                    For Windows



                    Press Ctrl+L to set the focus on the address bar and then press Alt+Enter to duplicate the tab into a new tab.






                    share|improve this answer















                    Yes and no. It's not a definite "Duplicated Tab". It's a two step process.



                    For Mac OS



                    Press Command+L to set the focus on the address bar and then press either:



                    Option+Return to duplicate the tab into a new tab, or



                    Shift+Return to duplicate the tab into a new window.



                    For Windows



                    Press Ctrl+L to set the focus on the address bar and then press Alt+Enter to duplicate the tab into a new tab.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Jul 5 '17 at 0:53









                    G-Man

                    5,617112357




                    5,617112357










                    answered Jul 4 '17 at 18:42









                    John the UserJohn the User

                    211




                    211













                    • This does not add any new information to existing answers, except the "Shift+Return" part.

                      – Vylix
                      Jul 4 '17 at 19:28











                    • You are repeating other answer

                      – yass
                      Jul 4 '17 at 19:36



















                    • This does not add any new information to existing answers, except the "Shift+Return" part.

                      – Vylix
                      Jul 4 '17 at 19:28











                    • You are repeating other answer

                      – yass
                      Jul 4 '17 at 19:36

















                    This does not add any new information to existing answers, except the "Shift+Return" part.

                    – Vylix
                    Jul 4 '17 at 19:28





                    This does not add any new information to existing answers, except the "Shift+Return" part.

                    – Vylix
                    Jul 4 '17 at 19:28













                    You are repeating other answer

                    – yass
                    Jul 4 '17 at 19:36





                    You are repeating other answer

                    – yass
                    Jul 4 '17 at 19:36











                    1














                    Maybe you can use the Smoothe Mouse Gestures add on to create a shortcut with a mouse gesture.






                    share|improve this answer




























                      1














                      Maybe you can use the Smoothe Mouse Gestures add on to create a shortcut with a mouse gesture.






                      share|improve this answer


























                        1












                        1








                        1







                        Maybe you can use the Smoothe Mouse Gestures add on to create a shortcut with a mouse gesture.






                        share|improve this answer













                        Maybe you can use the Smoothe Mouse Gestures add on to create a shortcut with a mouse gesture.







                        share|improve this answer












                        share|improve this answer



                        share|improve this answer










                        answered May 17 '11 at 7:21









                        Michael KMichael K

                        2,93341942




                        2,93341942























                            1














                            I read this question yesterday, and have just found a possible solution, that doesn't require a plugin, though it is not a keyboard shortcut as your question asked!



                            If you middle click (push the scroll wheel down) on the back button this opens a new tab with the same history, admittedly you are one step back in your history, but it is a duplicate.






                            share|improve this answer
























                            • read Jared Harley's ans

                              – Pacerier
                              May 19 '11 at 6:55
















                            1














                            I read this question yesterday, and have just found a possible solution, that doesn't require a plugin, though it is not a keyboard shortcut as your question asked!



                            If you middle click (push the scroll wheel down) on the back button this opens a new tab with the same history, admittedly you are one step back in your history, but it is a duplicate.






                            share|improve this answer
























                            • read Jared Harley's ans

                              – Pacerier
                              May 19 '11 at 6:55














                            1












                            1








                            1







                            I read this question yesterday, and have just found a possible solution, that doesn't require a plugin, though it is not a keyboard shortcut as your question asked!



                            If you middle click (push the scroll wheel down) on the back button this opens a new tab with the same history, admittedly you are one step back in your history, but it is a duplicate.






                            share|improve this answer













                            I read this question yesterday, and have just found a possible solution, that doesn't require a plugin, though it is not a keyboard shortcut as your question asked!



                            If you middle click (push the scroll wheel down) on the back button this opens a new tab with the same history, admittedly you are one step back in your history, but it is a duplicate.







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered May 18 '11 at 9:04









                            Alan WhitelawAlan Whitelaw

                            322222




                            322222













                            • read Jared Harley's ans

                              – Pacerier
                              May 19 '11 at 6:55



















                            • read Jared Harley's ans

                              – Pacerier
                              May 19 '11 at 6:55

















                            read Jared Harley's ans

                            – Pacerier
                            May 19 '11 at 6:55





                            read Jared Harley's ans

                            – Pacerier
                            May 19 '11 at 6:55











                            0














                            The address bar select + enter trick on OS X (not a "true duplicate", but close enough for me):



                            command+L command+enter



                            Thanks to https://superuser.com/a/310162/127024.






                            share|improve this answer






























                              0














                              The address bar select + enter trick on OS X (not a "true duplicate", but close enough for me):



                              command+L command+enter



                              Thanks to https://superuser.com/a/310162/127024.






                              share|improve this answer




























                                0












                                0








                                0







                                The address bar select + enter trick on OS X (not a "true duplicate", but close enough for me):



                                command+L command+enter



                                Thanks to https://superuser.com/a/310162/127024.






                                share|improve this answer















                                The address bar select + enter trick on OS X (not a "true duplicate", but close enough for me):



                                command+L command+enter



                                Thanks to https://superuser.com/a/310162/127024.







                                share|improve this answer














                                share|improve this answer



                                share|improve this answer








                                edited Jun 7 '17 at 22:29









                                Bryan Ash

                                1034




                                1034










                                answered Apr 29 '15 at 20:28









                                JohannJohann

                                406515




                                406515























                                    0














                                    My favorite shortcut for duplicating a tab is as follows: alt+D+enter1.



                                    Some other commands/series of commands are as follows:





                                    • ctrl+L2alt+D


                                    • f6alt+enter


                                    As you may notice, these commands all put the focus on the omnibox whereupon you use alt+enter to "duplicate" the tab. Unfortunately, however, all of the said commands make use of alt+enter, which is not a true tab duplication command, but rather one which opens the same website in a separate tab (usually does not store current data such as your scroll-position and text typed into text-boxes).



                                    1 If you are the technical type, however, you may want to know that this is actually a mashup of alt+D and alt+enter



                                    2ctrl+L might be interpreted by the computer as a command to insert a link (in a text box).






                                    share|improve this answer




























                                      0














                                      My favorite shortcut for duplicating a tab is as follows: alt+D+enter1.



                                      Some other commands/series of commands are as follows:





                                      • ctrl+L2alt+D


                                      • f6alt+enter


                                      As you may notice, these commands all put the focus on the omnibox whereupon you use alt+enter to "duplicate" the tab. Unfortunately, however, all of the said commands make use of alt+enter, which is not a true tab duplication command, but rather one which opens the same website in a separate tab (usually does not store current data such as your scroll-position and text typed into text-boxes).



                                      1 If you are the technical type, however, you may want to know that this is actually a mashup of alt+D and alt+enter



                                      2ctrl+L might be interpreted by the computer as a command to insert a link (in a text box).






                                      share|improve this answer


























                                        0












                                        0








                                        0







                                        My favorite shortcut for duplicating a tab is as follows: alt+D+enter1.



                                        Some other commands/series of commands are as follows:





                                        • ctrl+L2alt+D


                                        • f6alt+enter


                                        As you may notice, these commands all put the focus on the omnibox whereupon you use alt+enter to "duplicate" the tab. Unfortunately, however, all of the said commands make use of alt+enter, which is not a true tab duplication command, but rather one which opens the same website in a separate tab (usually does not store current data such as your scroll-position and text typed into text-boxes).



                                        1 If you are the technical type, however, you may want to know that this is actually a mashup of alt+D and alt+enter



                                        2ctrl+L might be interpreted by the computer as a command to insert a link (in a text box).






                                        share|improve this answer













                                        My favorite shortcut for duplicating a tab is as follows: alt+D+enter1.



                                        Some other commands/series of commands are as follows:





                                        • ctrl+L2alt+D


                                        • f6alt+enter


                                        As you may notice, these commands all put the focus on the omnibox whereupon you use alt+enter to "duplicate" the tab. Unfortunately, however, all of the said commands make use of alt+enter, which is not a true tab duplication command, but rather one which opens the same website in a separate tab (usually does not store current data such as your scroll-position and text typed into text-boxes).



                                        1 If you are the technical type, however, you may want to know that this is actually a mashup of alt+D and alt+enter



                                        2ctrl+L might be interpreted by the computer as a command to insert a link (in a text box).







                                        share|improve this answer












                                        share|improve this answer



                                        share|improve this answer










                                        answered Apr 13 '18 at 3:22









                                        quantumPoopquantumPoop

                                        1




                                        1























                                            0














                                            On MacOS, you can do Cmd + L then Enter. It opens a duplicate tab at the end of tabs.



                                            To open one right next to current one, I haven't found a shortcut key for it. Using mouse, you can do Cmd + click the Refresh button as mentioned above.






                                            share|improve this answer




























                                              0














                                              On MacOS, you can do Cmd + L then Enter. It opens a duplicate tab at the end of tabs.



                                              To open one right next to current one, I haven't found a shortcut key for it. Using mouse, you can do Cmd + click the Refresh button as mentioned above.






                                              share|improve this answer


























                                                0












                                                0








                                                0







                                                On MacOS, you can do Cmd + L then Enter. It opens a duplicate tab at the end of tabs.



                                                To open one right next to current one, I haven't found a shortcut key for it. Using mouse, you can do Cmd + click the Refresh button as mentioned above.






                                                share|improve this answer













                                                On MacOS, you can do Cmd + L then Enter. It opens a duplicate tab at the end of tabs.



                                                To open one right next to current one, I haven't found a shortcut key for it. Using mouse, you can do Cmd + click the Refresh button as mentioned above.







                                                share|improve this answer












                                                share|improve this answer



                                                share|improve this answer










                                                answered Jan 14 at 17:50









                                                ssppjjssppjj

                                                11




                                                11























                                                    -2














                                                    I just click the Location/Address to select the whole thing, Ctrl-C to copy it, Ctrl-T to open a new tab, click in the new Location/Address, Ctrl-V to paste, and Enter to load a copy.






                                                    share|improve this answer



















                                                    • 4





                                                      but that doesn't preserve the history and everything else. it effectively on opens a new tab with the current page (unlike duplicate tab)

                                                      – Pacerier
                                                      May 17 '11 at 6:12











                                                    • sorry, but this isn't an answer to the question. it's not a duplicate. A duplicate retains history, position, etc. And it adds more steps. If the OP didn't want to save steps (at least 3 steps that you've described), then right-click > duplicate on the tab is much faster and less steps in the first place.

                                                      – Flak DiNenno
                                                      Jul 14 '14 at 18:13
















                                                    -2














                                                    I just click the Location/Address to select the whole thing, Ctrl-C to copy it, Ctrl-T to open a new tab, click in the new Location/Address, Ctrl-V to paste, and Enter to load a copy.






                                                    share|improve this answer



















                                                    • 4





                                                      but that doesn't preserve the history and everything else. it effectively on opens a new tab with the current page (unlike duplicate tab)

                                                      – Pacerier
                                                      May 17 '11 at 6:12











                                                    • sorry, but this isn't an answer to the question. it's not a duplicate. A duplicate retains history, position, etc. And it adds more steps. If the OP didn't want to save steps (at least 3 steps that you've described), then right-click > duplicate on the tab is much faster and less steps in the first place.

                                                      – Flak DiNenno
                                                      Jul 14 '14 at 18:13














                                                    -2












                                                    -2








                                                    -2







                                                    I just click the Location/Address to select the whole thing, Ctrl-C to copy it, Ctrl-T to open a new tab, click in the new Location/Address, Ctrl-V to paste, and Enter to load a copy.






                                                    share|improve this answer













                                                    I just click the Location/Address to select the whole thing, Ctrl-C to copy it, Ctrl-T to open a new tab, click in the new Location/Address, Ctrl-V to paste, and Enter to load a copy.







                                                    share|improve this answer












                                                    share|improve this answer



                                                    share|improve this answer










                                                    answered May 17 '11 at 4:03









                                                    Michael DillonMichael Dillon

                                                    8591611




                                                    8591611








                                                    • 4





                                                      but that doesn't preserve the history and everything else. it effectively on opens a new tab with the current page (unlike duplicate tab)

                                                      – Pacerier
                                                      May 17 '11 at 6:12











                                                    • sorry, but this isn't an answer to the question. it's not a duplicate. A duplicate retains history, position, etc. And it adds more steps. If the OP didn't want to save steps (at least 3 steps that you've described), then right-click > duplicate on the tab is much faster and less steps in the first place.

                                                      – Flak DiNenno
                                                      Jul 14 '14 at 18:13














                                                    • 4





                                                      but that doesn't preserve the history and everything else. it effectively on opens a new tab with the current page (unlike duplicate tab)

                                                      – Pacerier
                                                      May 17 '11 at 6:12











                                                    • sorry, but this isn't an answer to the question. it's not a duplicate. A duplicate retains history, position, etc. And it adds more steps. If the OP didn't want to save steps (at least 3 steps that you've described), then right-click > duplicate on the tab is much faster and less steps in the first place.

                                                      – Flak DiNenno
                                                      Jul 14 '14 at 18:13








                                                    4




                                                    4





                                                    but that doesn't preserve the history and everything else. it effectively on opens a new tab with the current page (unlike duplicate tab)

                                                    – Pacerier
                                                    May 17 '11 at 6:12





                                                    but that doesn't preserve the history and everything else. it effectively on opens a new tab with the current page (unlike duplicate tab)

                                                    – Pacerier
                                                    May 17 '11 at 6:12













                                                    sorry, but this isn't an answer to the question. it's not a duplicate. A duplicate retains history, position, etc. And it adds more steps. If the OP didn't want to save steps (at least 3 steps that you've described), then right-click > duplicate on the tab is much faster and less steps in the first place.

                                                    – Flak DiNenno
                                                    Jul 14 '14 at 18:13





                                                    sorry, but this isn't an answer to the question. it's not a duplicate. A duplicate retains history, position, etc. And it adds more steps. If the OP didn't want to save steps (at least 3 steps that you've described), then right-click > duplicate on the tab is much faster and less steps in the first place.

                                                    – Flak DiNenno
                                                    Jul 14 '14 at 18:13











                                                    -2














                                                    You may try F6 and press Alt+Enter.






                                                    share|improve this answer
























                                                    • This only creates a new page, the "history" (back and forward state) and scroll state are not duplicated

                                                      – Pacerier
                                                      Jul 24 '14 at 7:12











                                                    • ALT+D+Enter is also same work.

                                                      – Pratik Butani
                                                      Jul 24 '14 at 7:27
















                                                    -2














                                                    You may try F6 and press Alt+Enter.






                                                    share|improve this answer
























                                                    • This only creates a new page, the "history" (back and forward state) and scroll state are not duplicated

                                                      – Pacerier
                                                      Jul 24 '14 at 7:12











                                                    • ALT+D+Enter is also same work.

                                                      – Pratik Butani
                                                      Jul 24 '14 at 7:27














                                                    -2












                                                    -2








                                                    -2







                                                    You may try F6 and press Alt+Enter.






                                                    share|improve this answer













                                                    You may try F6 and press Alt+Enter.







                                                    share|improve this answer












                                                    share|improve this answer



                                                    share|improve this answer










                                                    answered Jul 23 '14 at 10:21









                                                    Pratik ButaniPratik Butani

                                                    971




                                                    971













                                                    • This only creates a new page, the "history" (back and forward state) and scroll state are not duplicated

                                                      – Pacerier
                                                      Jul 24 '14 at 7:12











                                                    • ALT+D+Enter is also same work.

                                                      – Pratik Butani
                                                      Jul 24 '14 at 7:27



















                                                    • This only creates a new page, the "history" (back and forward state) and scroll state are not duplicated

                                                      – Pacerier
                                                      Jul 24 '14 at 7:12











                                                    • ALT+D+Enter is also same work.

                                                      – Pratik Butani
                                                      Jul 24 '14 at 7:27

















                                                    This only creates a new page, the "history" (back and forward state) and scroll state are not duplicated

                                                    – Pacerier
                                                    Jul 24 '14 at 7:12





                                                    This only creates a new page, the "history" (back and forward state) and scroll state are not duplicated

                                                    – Pacerier
                                                    Jul 24 '14 at 7:12













                                                    ALT+D+Enter is also same work.

                                                    – Pratik Butani
                                                    Jul 24 '14 at 7:27





                                                    ALT+D+Enter is also same work.

                                                    – Pratik Butani
                                                    Jul 24 '14 at 7:27


















                                                    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%2f284115%2fis-there-a-shortcut-key-to-duplicate-a-tab-in-google-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

                                                    Mouse cursor on multiple screens with different PPI

                                                    Agildo Ribeiro

                                                    Sometime when accessing a menu: “Ubuntu 16.04 has experienced an internal error”