47

I have multiple accounts on many of the same services. I would like a better way to manage my sessions.

  • A personal Gmail account, and one for work
  • A personal Amazon account, one for work
  • A personal hosting account, one for work, one I manage for a freelance client
  • Many other scenarios like this

As a developer, I'd like to avoid repetitive logins for

  • browse as a logged-in admin
  • browse as a logged-in user
  • browse as a guest, or any other role

I'd like to avoid having to logout, login, logout, login, over and over again.

I understand that some services like Gmail offer simultaneous logins, but I want a general purpose solution that works for all services.

Chrome Incognito Mode is not designed for this

  • Chrome Incognito Mode gives you a new cookie jar, but cookies are shared across other incognito windows. At best, this means you can have two sessions.

  • Other browser extensions you may rely upon are not available in Incognito windows (nor should they be)

  • This isn't Incognito's intended purpose

macek
  • 6,525

5 Answers5

30

Currently, this is not possible.

You can use multiple profiles in Google Chrome, though. Read the instructions here.

jsejcksn
  • 4,581
6
  1. Enable multiple accounts: https://www.google.com/accounts/MultipleSessions
  2. Then, create a bookmark(let) or a keyboard shortcut for each mailbox:

https://mail.google.com/mail/u/0/#inbox

https://mail.google.com/mail/u/1/#inbox

Source: http://lifehacker.com/5733636/switch-between-multiple-gmail-accounts-with-a-url-hack

Justin
  • 261
4

MultiLogin is down from the google webstore, but there is an alternative (SessionBox) https://chrome.google.com/webstore/detail/sessionbox-beta/megbklhjamjbcafknkgmokldgolkdfig

hovitya
  • 141
2

Ghost Browser (http://ghostbrowser.com) allows you to do all of those things from one browser window. Every time you open a new tab you can assign it to an isolated cookie jar so whether you are logging in to multiple google accounts or are testing different account levels of a web site you are building, you can do it all in one browser window. It's built off of Chromium so you can also use your favorite Chrome extensions with it.

Disclaimer: I'm the founder of the company that built it.

2

So after being frustrated that such a simple plugin didn't exist, I made a script for launching a clean Chrome. It is called New Chrome Session.

https://bitbucket.org/bradisbell/new-chrome-session/overview

This creates a shortcut that launches a completely blank session, which tracks its own cookies and what not.

You can use this to login to multiple accounts simultaneously. It works great for Gmail and Facebook, as well as sites using basic auth. It should work for everything.

The only catch that I can see is that you can't use both within the same window. I don't think there is a way around this.

Anyway... enjoy!

Brad
  • 6,629