As part of a Google Chrome extension that I'm building I need to be able to tell if a user has signed in to the Google Chrome browser while the extension is enabled.
How can I do this?
Please note that using OAuth2 (and thus, the chrome.identity
API) is beyond the scope of my project so I need to find another way.
EDIT: my question is not a duplicate of this one because the solution in that thread no longer works.
Check if
LSID
cookie is set:manifest.json permissions:
"cookies", "https://accounts.google.com/"
And don't forget to add
"identity"
to permissions.