Im building a Chrome externsion which stores the user's passwords.
Is there a deterministic way to get the user's credentials under the assumption that the email input has a type Email and the passwords has a type Password?
<input type="email" />
<input type="password" />
What Ive tried so far is just taking the values of these fields using jQuery. The issue is that I dont know when he actually submits the login.
Listening to url changes (using chrome.tabs.onUpdated is not helpful because the user can either just press Back, go to a different url or submit the login).
Is there a way to get these credentials whenever:
- Chrome alerts the user about new account+password
- Chrome alerts the user about modified password