How to quickly change user profile in Google Chrome?

46

16

Is there any keyboard shortcut for changing it? Google couldn't solve my problem.

I'm using too many different profiles for my blog and their social media profiles etc. Sometimes it's getting annoying to open it with mouse from top corner. I love shortcuts.

JacopKane

Posted 2012-06-17T19:50:29.840

Reputation: 1 341

1This isn't a keyboard shortcut, but if you right-click it, you get a quick-access menu. – alirobe – 2016-03-10T10:37:49.603

Answers

70

Windows and Linux:

Ctrl+Shift+M then then Enter then or until you reach the user you want.

Mac OS:

+Shift+M then then Enter then or until you reach the user you want.

Note

On Chrome 78 this keyboard shortcut opens the profile menu and focuses your previous used profile, so after you invoked the menu it's enough to hit Enter to quickly switch from one profile to the other.

imtheman

Posted 2012-06-17T19:50:29.840

Reputation: 3 503

9What an "EASY SHORTCUT" Ctrl+Shift+M then ▼ then Enter then ► or ◄ until you reach the user you want.

Please add few more keypresses Google :) – Rajkiran – 2015-05-25T11:37:22.497

2Note: For Mac users you'll need to use ⌘ Cmd instead of Ctrl – shim – 2015-09-29T20:16:10.237

as a side note, just pressing Cmd/Ctrl + Shift + M is what brings up the menu. You can use the directional arrows and enter key to navigate that menu but you don't need to continuously hold down the hotkey - and pressing esc will close the menu should you need that. – EmmaGamma – 2016-01-21T20:52:51.803

1This solution works for me on Version 53.0.2785.116 (64-bit). it should be the solution – Daniel Gomez Rico – 2016-09-22T19:42:48.120

@JacopKane As Daniel has stated, this should still be the answer to the question, as it has both Mac and Windows shortcuts. Whereas Patrick's answer only has a Mac shortcut. – imtheman – 2016-09-22T21:11:26.400

@imtheman Okay, accepted this one – JacopKane – 2016-09-23T15:12:31.410

Cheers! good time saver! – drew7721 – 2017-11-02T17:33:00.957

31

Chrome now has a "People" menu. If you have two profiles, say "Work" and "Personal",

  1. go to System Preferences -> Keyboard -> Shortcuts -> App Shortcuts
  2. click the +
  3. choose "Google Chrome.app"
  4. add one keyboard shortcut for "Work" and another one for "Personal".

a paid nerd

Posted 2012-06-17T19:50:29.840

Reputation: 2 803

Can we use a similar shortcut property for switching to an already open incognito window? – shivshnkr – 2016-10-20T19:19:22.407

awesome, exactly what i was looking for thank you! – Tamas Kalman – 2016-11-03T06:00:24.587

Perfect solution! This should be the accepted answer. – merlin – 2016-11-21T08:40:07.287

2@shivshnkr The menu item names in the Keyboard Shortcut preferences need to be exact, but I don't see a menu item to switch between windows in Chrome, probably because it's an OS-level thing. The default is ⌘-` (backtick) which is under Keyboard -> Shortcuts -> Keyboard -> Move focus to next window – a paid nerd – 2018-01-20T18:45:50.640

can you share a video of what you suggested I could not understand from your answer how to do it. – political science – 2019-12-04T13:43:58.960

20

Below are instructions to setup your own quick shortcuts for Mac OS X in case you consider Chrome's default combination of keys too long for a "shortcut".

Part 1.

  1. Launch Chrome
  2. Click "Preferences" in "Chrome" menu in the top bar. You should see more than one user profile in the section People. For example, "Work" and "Personal" or "Work" and your name.
  3. Click on "Personal" or your name and click "Edit" below it.
  4. Rename it to "Gpersonal" or something else. I am not sure why this is needed, but it worked for me only after renaming it.

Part 2.

  1. Go to Mac OS X Settings You can do it via Apple icon in the top left corner.
  2. Go to "Keyboard" > "Shortcuts".
  3. Choose "App Shortcuts" in the left pane.
  4. Click "+" in the bottom.
  5. In "Application" section choose "Google Chrome"
  6. In "Menu Title" type first profile name. For example, "Work" without quotes.
  7. Choose a keyboard shortcut, for example, "Cmd+Shift+,".
  8. Click "Add".
  9. Click "+" in the bottom.
  10. In "Menu Title" type first profile name. For example, "GPersonal" without quotes.
  11. Choose a keyboard shortcut, for example, "Cmd+Shift+.".
  12. Click "Add".
  13. You can go back to Chrome now and try new shortcuts.

Tilek

Posted 2012-06-17T19:50:29.840

Reputation: 302

Can we use a similar shortcut property for switching to an already open incognito window? – shivshnkr – 2016-10-20T19:19:59.807

8

For Mac OS X :

Since there is the People menu and in Mac OS X, you can access all items in menus with a search in the Help menu, you can also do :

cmd + shift + ? (to access the search in the help menu)

[name of the profile]

Enter

What is nice with this tip is that, it works also to have a "shortcut" to menu item that do not natively have one :-)

Patrick Browne

Posted 2012-06-17T19:50:29.840

Reputation: 311

A nice alternative for keyboard people like me, thanks – JacopKane – 2016-03-17T15:30:53.727

This is objectively the best answer. Nice! – Buckwad – 2018-10-13T03:07:10.583

5

With the latest version of Chrome, there is now a Menu option "People" at the top, with items for each profile you maintain. Since this is now a built-in menu, it is possible (at least on OSX) to bind a custom keyboard shortcut to switch to a specific profile.

For example, I have a shortcut set up for "Personal" (Ctrl+Cmd+Shift+1) and "Work" (Ctrl+Cmd+Shift+2) - you just have to make sure your profiles aren't named exactly the same.

diurnalist

Posted 2012-06-17T19:50:29.840

Reputation: 151

1

I created a small autohotkey script if you want to automate shortcut.

#IfWinActive, ahk_class Chrome_WidgetWin_1

    ^+k::SendInput ^+m{up}{up}{enter}{right}{right}

    ^+m::
        WinGetPos,,, Width,, A
        ControlClick % "x" width - 175 " y10",,, Right
        SendInput {down}
    Return

#IfWinActive

Note: You may need to change the values of 175 and 10 depending upon your system resolution

VarunAgw

Posted 2012-06-17T19:50:29.840

Reputation: 779

1Wouldn't be a SuperUser answer without ❤ of Autohotkey – jay – 2016-11-08T00:22:00.990

1@Jay! I am a big fan of AHK. My personal AHK file is over 2000 lines of code written by me in just 2-4 years :) – VarunAgw – 2016-11-08T13:20:21.100

0

First we need to access Chrome profile switcher options; the default keyboard shortcut for this is “Ctrl + Shift + M.” Just press “Ctrl + Shift + M” on any active window in Chrome, and the profile switcher should drop down from the top-right corner.

rose winslet

Posted 2012-06-17T19:50:29.840

Reputation: 1

-1

This is helpful Ctrl+Shift+M then ▼ then Enter then ► or ◄ until you reach the user you want.

But this is even faster way to switch : In the upper right corner of the browser window right-click on the current profile name and then select the other profile, this i find much faster

chaitanya

Posted 2012-06-17T19:50:29.840

Reputation: 9

4The first part of your answer is a copy of another answer. The second part doesn't answer the question, which is asking for a keyboard shortcut. – DavidPostill – 2016-05-05T13:25:59.367