I'm working on Chrome extension which work on Gmail, and for login by google account, I use chrome.identity.getAuthToken to get auth_token
chrome.identity.getAuthToken({'interactive': false},
googlePlusLoginCallback)
it works fine while user only has one gmail account.
But in the scenario user has more gmail accounts(like private one and one from company), the api only use the primary account to request auth_token; Is it possible to let user choose their account before request auth_token?