Skip to content

Instantly share code, notes, and snippets.

@MadLittleMods
Last active March 23, 2019 05:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MadLittleMods/7b11f5776deee328a75645a4ab20b193 to your computer and use it in GitHub Desktop.
Save MadLittleMods/7b11f5776deee328a75645a4ab20b193 to your computer and use it in GitHub Desktop.
Manually add saved password to Chrome

Manually add saved password to Chrome

Some apps don't have browser logins (mobile or desktop only apps) but you still want to manage your passwords in one place (Google Chrome).

Solution

Inspect the page and insert the following HTML <form> anywhere on the page. Then fill it out and submit 🤠

<form id="login" action="/" method="post">
  <input type="text" autocomplete="username">
  <input type="password" autocomplete="current-password">
  <input type="submit" value="Sign In!">
</form>

HTML markup from https://www.chromium.org/developers/design-documents/form-styles-that-chromium-understands

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment