Opening multiple windows (each with different tabs) when Chrome starts












3















I need Chrome to startup with multiple windows with different tabs in each.
Is there an extension I can use for this or a setting I don't know about? I am able to do this in Firefox using session manager but I cannot use Firefox for this.










share|improve this question





























    3















    I need Chrome to startup with multiple windows with different tabs in each.
    Is there an extension I can use for this or a setting I don't know about? I am able to do this in Firefox using session manager but I cannot use Firefox for this.










    share|improve this question



























      3












      3








      3








      I need Chrome to startup with multiple windows with different tabs in each.
      Is there an extension I can use for this or a setting I don't know about? I am able to do this in Firefox using session manager but I cannot use Firefox for this.










      share|improve this question
















      I need Chrome to startup with multiple windows with different tabs in each.
      Is there an extension I can use for this or a setting I don't know about? I am able to do this in Firefox using session manager but I cannot use Firefox for this.







      google-chrome google-chrome-extensions






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Oct 3 '14 at 14:33









      lzam

      1,366916




      1,366916










      asked Oct 3 '14 at 14:24









      JProgrammerJProgrammer

      1613




      1613






















          4 Answers
          4






          active

          oldest

          votes


















          1














          Assuming you are running Windows, follow these steps:




          1. Install a second Chrome: How to have two separate installations of Chrome on one PC

          2. Open your favorite text editor (if you don't have one, use Notepad)


          3. Write the following batch code:



            @echo off
            cd "path/to/chrome"
            start chrome.exe

            cd "path/to/chrome2"
            start chrome.exe
            exit


          4. Save as chrome_launcher.bat


          5. Replace Chrome shortcut with a shortcut to the batch file


          6. Disable sync on both Chrome applications if necessary


          7. Change on startup section of settings in both Chrome applications differently



          Hope this helps!






          share|improve this answer































            1














            Unpin Chrome from your taskbar. Make sure you unpin all instances. Then go into your menu button and find Chrome again. Open a window and pin that window to the taskbar. Solved the problem for me






            share|improve this answer































              0














              Is that on a Windows environment? It would be nice if you explained your needs better ... anyway:



              You can set which pages will be loaded when Chrome starts in Settings >> On Startup >> Open a specific page or set of pages. Set the pages you want to be loaded.



              Also, if you need them to be loaded on Windows Startup, then you can copy a Chrome shortcut to the Startup Folder. On Windows 8, it is located at:
              %AppData%MicrosoftWindowsStart MenuProgramsStartup



              I hope it helps.






              share|improve this answer


























              • I know how to make Chrome start when windows starts. I am trying to find out how to make two windows of chrome launch when I launch chrome itself.

                – JProgrammer
                Oct 3 '14 at 15:16











              • Allright. Have you tried changing the ON STARTUP section of settings in Chrome, as I told you in the answer? It should work; if it doesn't, please tell us your Chorme version.

                – Gui Imamura
                Oct 3 '14 at 16:15






              • 1





                yes I have done this but that still only opens one window of chrome with one set of tabs which is not what I need. I want to open two windows of chrome with different tabs.

                – JProgrammer
                Oct 3 '14 at 17:06











              • There is a "Session Buddy" extension in the Chrome Web Store but it is not automatic, would require 2 more clicks.

                – Rsya Studios
                Oct 4 '14 at 5:07











              • Ah, I hadn't understood your question then. Sorry for wasting your time... I have no clue of how to do that

                – Gui Imamura
                Oct 4 '14 at 19:00



















              0














              I use AutoHotkey to open up five windows of Chrome across three monitors, with one on the leftmost (primary) monitor, and two on each of the other two monitors. My script is below. It's not the most elegant; I use 600ms breaks between actions to avoid issues since the computer is still slow when starting up.



              #s::
              ;Open Chrome
              Run https://mail.google.com/mail/u/0/#inbox
              Sleep, 600
              ;Maximize the window
              WinMaximize
              Sleep, 600
              ;Open new window
              Run Chrome
              Sleep, 600
              ;Send to middle monitor
              send, {LWin Down}{Shift Down}{Right}{Shift Up}{LWin up}
              Sleep, 600
              ;move to left half of middle monitor
              send, {LWin Down}{Left}{LWin up}
              Sleep, 600
              ;open new window
              Run Chrome
              Sleep, 600
              ;Send to right half of middle monitor
              send, {LWin Down}{Right}{LWin up}
              Sleep, 600
              ;open new window
              Run Chrome
              Sleep, 600
              ;Send window to right monitor
              send, {LWin Down}{Right}{LWin up}
              Sleep, 600
              send, {LWin Down}{Right}{LWin up}
              Sleep, 600
              ;Open new window
              Run Chrome
              Sleep, 600
              ;Send window to right half of right monitor
              send, {LWin Down}{Right}{LWin up}
              Sleep, 600
              return





              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%2f820331%2fopening-multiple-windows-each-with-different-tabs-when-chrome-starts%23new-answer', 'question_page');
                }
                );

                Post as a guest















                Required, but never shown

























                4 Answers
                4






                active

                oldest

                votes








                4 Answers
                4






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                1














                Assuming you are running Windows, follow these steps:




                1. Install a second Chrome: How to have two separate installations of Chrome on one PC

                2. Open your favorite text editor (if you don't have one, use Notepad)


                3. Write the following batch code:



                  @echo off
                  cd "path/to/chrome"
                  start chrome.exe

                  cd "path/to/chrome2"
                  start chrome.exe
                  exit


                4. Save as chrome_launcher.bat


                5. Replace Chrome shortcut with a shortcut to the batch file


                6. Disable sync on both Chrome applications if necessary


                7. Change on startup section of settings in both Chrome applications differently



                Hope this helps!






                share|improve this answer




























                  1














                  Assuming you are running Windows, follow these steps:




                  1. Install a second Chrome: How to have two separate installations of Chrome on one PC

                  2. Open your favorite text editor (if you don't have one, use Notepad)


                  3. Write the following batch code:



                    @echo off
                    cd "path/to/chrome"
                    start chrome.exe

                    cd "path/to/chrome2"
                    start chrome.exe
                    exit


                  4. Save as chrome_launcher.bat


                  5. Replace Chrome shortcut with a shortcut to the batch file


                  6. Disable sync on both Chrome applications if necessary


                  7. Change on startup section of settings in both Chrome applications differently



                  Hope this helps!






                  share|improve this answer


























                    1












                    1








                    1







                    Assuming you are running Windows, follow these steps:




                    1. Install a second Chrome: How to have two separate installations of Chrome on one PC

                    2. Open your favorite text editor (if you don't have one, use Notepad)


                    3. Write the following batch code:



                      @echo off
                      cd "path/to/chrome"
                      start chrome.exe

                      cd "path/to/chrome2"
                      start chrome.exe
                      exit


                    4. Save as chrome_launcher.bat


                    5. Replace Chrome shortcut with a shortcut to the batch file


                    6. Disable sync on both Chrome applications if necessary


                    7. Change on startup section of settings in both Chrome applications differently



                    Hope this helps!






                    share|improve this answer













                    Assuming you are running Windows, follow these steps:




                    1. Install a second Chrome: How to have two separate installations of Chrome on one PC

                    2. Open your favorite text editor (if you don't have one, use Notepad)


                    3. Write the following batch code:



                      @echo off
                      cd "path/to/chrome"
                      start chrome.exe

                      cd "path/to/chrome2"
                      start chrome.exe
                      exit


                    4. Save as chrome_launcher.bat


                    5. Replace Chrome shortcut with a shortcut to the batch file


                    6. Disable sync on both Chrome applications if necessary


                    7. Change on startup section of settings in both Chrome applications differently



                    Hope this helps!







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Aug 29 '17 at 9:47









                    William RoqueWilliam Roque

                    112




                    112

























                        1














                        Unpin Chrome from your taskbar. Make sure you unpin all instances. Then go into your menu button and find Chrome again. Open a window and pin that window to the taskbar. Solved the problem for me






                        share|improve this answer




























                          1














                          Unpin Chrome from your taskbar. Make sure you unpin all instances. Then go into your menu button and find Chrome again. Open a window and pin that window to the taskbar. Solved the problem for me






                          share|improve this answer


























                            1












                            1








                            1







                            Unpin Chrome from your taskbar. Make sure you unpin all instances. Then go into your menu button and find Chrome again. Open a window and pin that window to the taskbar. Solved the problem for me






                            share|improve this answer













                            Unpin Chrome from your taskbar. Make sure you unpin all instances. Then go into your menu button and find Chrome again. Open a window and pin that window to the taskbar. Solved the problem for me







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Feb 10 '18 at 21:38









                            ParanesliaParaneslia

                            111




                            111























                                0














                                Is that on a Windows environment? It would be nice if you explained your needs better ... anyway:



                                You can set which pages will be loaded when Chrome starts in Settings >> On Startup >> Open a specific page or set of pages. Set the pages you want to be loaded.



                                Also, if you need them to be loaded on Windows Startup, then you can copy a Chrome shortcut to the Startup Folder. On Windows 8, it is located at:
                                %AppData%MicrosoftWindowsStart MenuProgramsStartup



                                I hope it helps.






                                share|improve this answer


























                                • I know how to make Chrome start when windows starts. I am trying to find out how to make two windows of chrome launch when I launch chrome itself.

                                  – JProgrammer
                                  Oct 3 '14 at 15:16











                                • Allright. Have you tried changing the ON STARTUP section of settings in Chrome, as I told you in the answer? It should work; if it doesn't, please tell us your Chorme version.

                                  – Gui Imamura
                                  Oct 3 '14 at 16:15






                                • 1





                                  yes I have done this but that still only opens one window of chrome with one set of tabs which is not what I need. I want to open two windows of chrome with different tabs.

                                  – JProgrammer
                                  Oct 3 '14 at 17:06











                                • There is a "Session Buddy" extension in the Chrome Web Store but it is not automatic, would require 2 more clicks.

                                  – Rsya Studios
                                  Oct 4 '14 at 5:07











                                • Ah, I hadn't understood your question then. Sorry for wasting your time... I have no clue of how to do that

                                  – Gui Imamura
                                  Oct 4 '14 at 19:00
















                                0














                                Is that on a Windows environment? It would be nice if you explained your needs better ... anyway:



                                You can set which pages will be loaded when Chrome starts in Settings >> On Startup >> Open a specific page or set of pages. Set the pages you want to be loaded.



                                Also, if you need them to be loaded on Windows Startup, then you can copy a Chrome shortcut to the Startup Folder. On Windows 8, it is located at:
                                %AppData%MicrosoftWindowsStart MenuProgramsStartup



                                I hope it helps.






                                share|improve this answer


























                                • I know how to make Chrome start when windows starts. I am trying to find out how to make two windows of chrome launch when I launch chrome itself.

                                  – JProgrammer
                                  Oct 3 '14 at 15:16











                                • Allright. Have you tried changing the ON STARTUP section of settings in Chrome, as I told you in the answer? It should work; if it doesn't, please tell us your Chorme version.

                                  – Gui Imamura
                                  Oct 3 '14 at 16:15






                                • 1





                                  yes I have done this but that still only opens one window of chrome with one set of tabs which is not what I need. I want to open two windows of chrome with different tabs.

                                  – JProgrammer
                                  Oct 3 '14 at 17:06











                                • There is a "Session Buddy" extension in the Chrome Web Store but it is not automatic, would require 2 more clicks.

                                  – Rsya Studios
                                  Oct 4 '14 at 5:07











                                • Ah, I hadn't understood your question then. Sorry for wasting your time... I have no clue of how to do that

                                  – Gui Imamura
                                  Oct 4 '14 at 19:00














                                0












                                0








                                0







                                Is that on a Windows environment? It would be nice if you explained your needs better ... anyway:



                                You can set which pages will be loaded when Chrome starts in Settings >> On Startup >> Open a specific page or set of pages. Set the pages you want to be loaded.



                                Also, if you need them to be loaded on Windows Startup, then you can copy a Chrome shortcut to the Startup Folder. On Windows 8, it is located at:
                                %AppData%MicrosoftWindowsStart MenuProgramsStartup



                                I hope it helps.






                                share|improve this answer















                                Is that on a Windows environment? It would be nice if you explained your needs better ... anyway:



                                You can set which pages will be loaded when Chrome starts in Settings >> On Startup >> Open a specific page or set of pages. Set the pages you want to be loaded.



                                Also, if you need them to be loaded on Windows Startup, then you can copy a Chrome shortcut to the Startup Folder. On Windows 8, it is located at:
                                %AppData%MicrosoftWindowsStart MenuProgramsStartup



                                I hope it helps.







                                share|improve this answer














                                share|improve this answer



                                share|improve this answer








                                edited Jun 15 '16 at 21:02









                                Pierre.Vriens

                                1,24761218




                                1,24761218










                                answered Oct 3 '14 at 15:03









                                Gui ImamuraGui Imamura

                                1155




                                1155













                                • I know how to make Chrome start when windows starts. I am trying to find out how to make two windows of chrome launch when I launch chrome itself.

                                  – JProgrammer
                                  Oct 3 '14 at 15:16











                                • Allright. Have you tried changing the ON STARTUP section of settings in Chrome, as I told you in the answer? It should work; if it doesn't, please tell us your Chorme version.

                                  – Gui Imamura
                                  Oct 3 '14 at 16:15






                                • 1





                                  yes I have done this but that still only opens one window of chrome with one set of tabs which is not what I need. I want to open two windows of chrome with different tabs.

                                  – JProgrammer
                                  Oct 3 '14 at 17:06











                                • There is a "Session Buddy" extension in the Chrome Web Store but it is not automatic, would require 2 more clicks.

                                  – Rsya Studios
                                  Oct 4 '14 at 5:07











                                • Ah, I hadn't understood your question then. Sorry for wasting your time... I have no clue of how to do that

                                  – Gui Imamura
                                  Oct 4 '14 at 19:00



















                                • I know how to make Chrome start when windows starts. I am trying to find out how to make two windows of chrome launch when I launch chrome itself.

                                  – JProgrammer
                                  Oct 3 '14 at 15:16











                                • Allright. Have you tried changing the ON STARTUP section of settings in Chrome, as I told you in the answer? It should work; if it doesn't, please tell us your Chorme version.

                                  – Gui Imamura
                                  Oct 3 '14 at 16:15






                                • 1





                                  yes I have done this but that still only opens one window of chrome with one set of tabs which is not what I need. I want to open two windows of chrome with different tabs.

                                  – JProgrammer
                                  Oct 3 '14 at 17:06











                                • There is a "Session Buddy" extension in the Chrome Web Store but it is not automatic, would require 2 more clicks.

                                  – Rsya Studios
                                  Oct 4 '14 at 5:07











                                • Ah, I hadn't understood your question then. Sorry for wasting your time... I have no clue of how to do that

                                  – Gui Imamura
                                  Oct 4 '14 at 19:00

















                                I know how to make Chrome start when windows starts. I am trying to find out how to make two windows of chrome launch when I launch chrome itself.

                                – JProgrammer
                                Oct 3 '14 at 15:16





                                I know how to make Chrome start when windows starts. I am trying to find out how to make two windows of chrome launch when I launch chrome itself.

                                – JProgrammer
                                Oct 3 '14 at 15:16













                                Allright. Have you tried changing the ON STARTUP section of settings in Chrome, as I told you in the answer? It should work; if it doesn't, please tell us your Chorme version.

                                – Gui Imamura
                                Oct 3 '14 at 16:15





                                Allright. Have you tried changing the ON STARTUP section of settings in Chrome, as I told you in the answer? It should work; if it doesn't, please tell us your Chorme version.

                                – Gui Imamura
                                Oct 3 '14 at 16:15




                                1




                                1





                                yes I have done this but that still only opens one window of chrome with one set of tabs which is not what I need. I want to open two windows of chrome with different tabs.

                                – JProgrammer
                                Oct 3 '14 at 17:06





                                yes I have done this but that still only opens one window of chrome with one set of tabs which is not what I need. I want to open two windows of chrome with different tabs.

                                – JProgrammer
                                Oct 3 '14 at 17:06













                                There is a "Session Buddy" extension in the Chrome Web Store but it is not automatic, would require 2 more clicks.

                                – Rsya Studios
                                Oct 4 '14 at 5:07





                                There is a "Session Buddy" extension in the Chrome Web Store but it is not automatic, would require 2 more clicks.

                                – Rsya Studios
                                Oct 4 '14 at 5:07













                                Ah, I hadn't understood your question then. Sorry for wasting your time... I have no clue of how to do that

                                – Gui Imamura
                                Oct 4 '14 at 19:00





                                Ah, I hadn't understood your question then. Sorry for wasting your time... I have no clue of how to do that

                                – Gui Imamura
                                Oct 4 '14 at 19:00











                                0














                                I use AutoHotkey to open up five windows of Chrome across three monitors, with one on the leftmost (primary) monitor, and two on each of the other two monitors. My script is below. It's not the most elegant; I use 600ms breaks between actions to avoid issues since the computer is still slow when starting up.



                                #s::
                                ;Open Chrome
                                Run https://mail.google.com/mail/u/0/#inbox
                                Sleep, 600
                                ;Maximize the window
                                WinMaximize
                                Sleep, 600
                                ;Open new window
                                Run Chrome
                                Sleep, 600
                                ;Send to middle monitor
                                send, {LWin Down}{Shift Down}{Right}{Shift Up}{LWin up}
                                Sleep, 600
                                ;move to left half of middle monitor
                                send, {LWin Down}{Left}{LWin up}
                                Sleep, 600
                                ;open new window
                                Run Chrome
                                Sleep, 600
                                ;Send to right half of middle monitor
                                send, {LWin Down}{Right}{LWin up}
                                Sleep, 600
                                ;open new window
                                Run Chrome
                                Sleep, 600
                                ;Send window to right monitor
                                send, {LWin Down}{Right}{LWin up}
                                Sleep, 600
                                send, {LWin Down}{Right}{LWin up}
                                Sleep, 600
                                ;Open new window
                                Run Chrome
                                Sleep, 600
                                ;Send window to right half of right monitor
                                send, {LWin Down}{Right}{LWin up}
                                Sleep, 600
                                return





                                share|improve this answer






























                                  0














                                  I use AutoHotkey to open up five windows of Chrome across three monitors, with one on the leftmost (primary) monitor, and two on each of the other two monitors. My script is below. It's not the most elegant; I use 600ms breaks between actions to avoid issues since the computer is still slow when starting up.



                                  #s::
                                  ;Open Chrome
                                  Run https://mail.google.com/mail/u/0/#inbox
                                  Sleep, 600
                                  ;Maximize the window
                                  WinMaximize
                                  Sleep, 600
                                  ;Open new window
                                  Run Chrome
                                  Sleep, 600
                                  ;Send to middle monitor
                                  send, {LWin Down}{Shift Down}{Right}{Shift Up}{LWin up}
                                  Sleep, 600
                                  ;move to left half of middle monitor
                                  send, {LWin Down}{Left}{LWin up}
                                  Sleep, 600
                                  ;open new window
                                  Run Chrome
                                  Sleep, 600
                                  ;Send to right half of middle monitor
                                  send, {LWin Down}{Right}{LWin up}
                                  Sleep, 600
                                  ;open new window
                                  Run Chrome
                                  Sleep, 600
                                  ;Send window to right monitor
                                  send, {LWin Down}{Right}{LWin up}
                                  Sleep, 600
                                  send, {LWin Down}{Right}{LWin up}
                                  Sleep, 600
                                  ;Open new window
                                  Run Chrome
                                  Sleep, 600
                                  ;Send window to right half of right monitor
                                  send, {LWin Down}{Right}{LWin up}
                                  Sleep, 600
                                  return





                                  share|improve this answer




























                                    0












                                    0








                                    0







                                    I use AutoHotkey to open up five windows of Chrome across three monitors, with one on the leftmost (primary) monitor, and two on each of the other two monitors. My script is below. It's not the most elegant; I use 600ms breaks between actions to avoid issues since the computer is still slow when starting up.



                                    #s::
                                    ;Open Chrome
                                    Run https://mail.google.com/mail/u/0/#inbox
                                    Sleep, 600
                                    ;Maximize the window
                                    WinMaximize
                                    Sleep, 600
                                    ;Open new window
                                    Run Chrome
                                    Sleep, 600
                                    ;Send to middle monitor
                                    send, {LWin Down}{Shift Down}{Right}{Shift Up}{LWin up}
                                    Sleep, 600
                                    ;move to left half of middle monitor
                                    send, {LWin Down}{Left}{LWin up}
                                    Sleep, 600
                                    ;open new window
                                    Run Chrome
                                    Sleep, 600
                                    ;Send to right half of middle monitor
                                    send, {LWin Down}{Right}{LWin up}
                                    Sleep, 600
                                    ;open new window
                                    Run Chrome
                                    Sleep, 600
                                    ;Send window to right monitor
                                    send, {LWin Down}{Right}{LWin up}
                                    Sleep, 600
                                    send, {LWin Down}{Right}{LWin up}
                                    Sleep, 600
                                    ;Open new window
                                    Run Chrome
                                    Sleep, 600
                                    ;Send window to right half of right monitor
                                    send, {LWin Down}{Right}{LWin up}
                                    Sleep, 600
                                    return





                                    share|improve this answer















                                    I use AutoHotkey to open up five windows of Chrome across three monitors, with one on the leftmost (primary) monitor, and two on each of the other two monitors. My script is below. It's not the most elegant; I use 600ms breaks between actions to avoid issues since the computer is still slow when starting up.



                                    #s::
                                    ;Open Chrome
                                    Run https://mail.google.com/mail/u/0/#inbox
                                    Sleep, 600
                                    ;Maximize the window
                                    WinMaximize
                                    Sleep, 600
                                    ;Open new window
                                    Run Chrome
                                    Sleep, 600
                                    ;Send to middle monitor
                                    send, {LWin Down}{Shift Down}{Right}{Shift Up}{LWin up}
                                    Sleep, 600
                                    ;move to left half of middle monitor
                                    send, {LWin Down}{Left}{LWin up}
                                    Sleep, 600
                                    ;open new window
                                    Run Chrome
                                    Sleep, 600
                                    ;Send to right half of middle monitor
                                    send, {LWin Down}{Right}{LWin up}
                                    Sleep, 600
                                    ;open new window
                                    Run Chrome
                                    Sleep, 600
                                    ;Send window to right monitor
                                    send, {LWin Down}{Right}{LWin up}
                                    Sleep, 600
                                    send, {LWin Down}{Right}{LWin up}
                                    Sleep, 600
                                    ;Open new window
                                    Run Chrome
                                    Sleep, 600
                                    ;Send window to right half of right monitor
                                    send, {LWin Down}{Right}{LWin up}
                                    Sleep, 600
                                    return






                                    share|improve this answer














                                    share|improve this answer



                                    share|improve this answer








                                    edited Feb 15 at 17:47









                                    Scott

                                    16.1k113990




                                    16.1k113990










                                    answered Feb 15 at 17:23









                                    Grant CarpenterGrant Carpenter

                                    1




                                    1






























                                        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%2f820331%2fopening-multiple-windows-each-with-different-tabs-when-chrome-starts%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

                                        flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

                                        Mangá

                                         ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕