57

How do I manually add a password to Chrome? For some reason, it doesn't ask me if I want to save my password for a website after I log in. I think I answered No the first time that it asked me, and now it's become a pain in the neck.

Milkyway
  • 731

13 Answers13

29

If you want to save a password from a page where there is no password input field, you can simply add a password input field anywhere on the page and start writing into that field. Google Chrome then adds a small key icon into the navigation bar which allows you to store the password onto that domain.

How to add a password-input field into the page with the Chrome DevTools

  1. Go to your desired web site.
  2. Hit F12 on your keyboard to open the Google Chrome DevTools or right click on an element and click on Inspect.
  3. Select the tab Elements.
  4. Select any (small) HTML tag and hit F2 to edit it (or double-click).
  5. Append the following element: <input type="password">.
  6. Click on another HTML tag to save it.
  7. Enter some password into the newly created input field on the website.
ssc-hrep3
  • 399
16

At the moment there is a beta-feature which can be activated on the following chrome settings page: chrome://flags/#password-import

Import Passwords

It can be used to import a list of passwords.

Important: If you don't see the "Import Passwords" flag, you probably need to launch chrome with the --enable-features=PasswordImport flag.

Additional details about this solution are avaialble in the answer to another question.

wake-0
  • 269
12

This is now available in the latest Chrome release

  • Open Chrome browser
  • Visit chrome://settings/passwords
  • Click Add button that appears next to Saved Passwords add password manually to Chrome via its settings
  • In the Add password dialog, type site URL, username, and Password in respective fields and click Save.

Note: The feature is enabled by default in Chrome version 100. Here is how you can enable it Chrome 98 or Chrome 99 versions

  • Head to chrome://flags
  • Search for “password”, in the dropdown for “Add Passwords in Settings”, select Enabled
  • Add passwords in Settings flag Chrome
  • Restart the browser.

Source: Chrome is making it easier to add passwords manually

Toto
  • 19,304
Nikash
  • 129
10

As stated here https://developer.mozilla.org/en-US/docs/Web/API/PasswordCredential:

const cred = new PasswordCredential({
  id: id,
  password: password,
  name: name,
});

navigator.credentials.store(cred) .then(() => { // Do something });

MC10
  • 10,620
Oli Crt
  • 209
4

The most manual way without having google chrome installed, without any tools besides a text editor. Open your text editor. type

url,username,password
https://example.org,username,password

save this file with .csv extension, and then go to password manager https://passwords.google.com/?ep=1 click on settings password import

import your csv file. Done.

Rainb
  • 255
3

I tried a simple technique and it worked for the websites that never prompts you save passwords.

Go to the password setting page. follow the blue link : View and manage saved passwords in your Google Account

Click on the password option icon at the right side of the text "Password manager" Export the password.csv file. Open it in excel. Add your website, username and password according to the existing entries in the file. save it in the same .csv format. Go to that password setting in google account again. Import the edited .csv file. Refresh the webpage.

That's it. Now browse your desired website and see the id password are auto filled in.

Thanks.

1

There is no direct way to add a password to Chrome without using third party software. If a website no longer asks you to save the password after selecting the "No" option, you can reset this choice in the settings.

To do this:

1: First open Chrome.

2: Then go in the password settings. Either copy/paste this link:

chrome://settings/passwords

Or click the three dots on the top right, and select settings in the drop down menu. Then select the first choice in the Autofill section: Passwords

3: On this page you will find a list called "Never Save". The website you cannot add will be in this list. Click on the X on the right to remove it.

4: Go back to the website you want to add a password to chrome (log off if needed) and then re-enter your credentials. Chrome will once more ask you if you want to save the password for this website.

Note: Be sure the "Offer to save passwords" choice is active in the passwords menu.

Natsu Kage
  • 1,002
1

I came here looking for an answer but most seemed a bit hacky... I used this method instead, nice and easy...

  1. Use the export passwords option to get the CSV template.
  2. Delete everything in the CSV except the header row.
  3. Add the details in the second row with the details for the password to add.
  4. Import the CSV (might need to use the chrome://flags#PasswordImport flag to get the import option)
0

You can also change the passwords by pressing the view button near the link and change it.
Here is the pic for it below:

Here is the pic for it below.

After that, you may change the password.

zx485
  • 2,337
Zaer
  • 9
0

Ok, so this actually works on all the things. I stumbled across this by trial and error. I had a site that I signed up for under an alternate account, but wanted to access using my main account and save the PW/Username for.

  1. Logout
  2. Go to site's login form
  3. When Chrome/Google offers a suggested password, select that. This will add an entry to your passwords (although the incorrect password obviously.)
  4. Go to your google account to manage passwords.
  5. Search for and update to use the correct password.

Completely "manual" but works every time.

0

Assuming Offer to save passwords is enabled when you browse to chorme://settings/passwords

I had the same problem where I was not being prompted to save my username/password for an internal company website. Then I realized that the browser was indicating the website certificate was invalid. Because this was an internal company website that I knew I could trust; I imported the certificate into Keychain Access, set trust to Allow Always and I was back in business!!

Chrome on Mac

Craig
  • 101
0

I found that Chrome for Windows wouldn't offer to save a password, but Chrome for iOS did. So that may be a simple solution for some.

0

In a text editor (NotePad for example) create a two line text file with commas after first two entries on each line. First line URL,username,password. Next line fill in your values. Save it on your desktop with extension .csv You can also do it by putting these values into an Excel sheet and saving as .csv format.

Example:

URL,username,password

https://www.MyWebsite.com,QueenOfTheUniverse,NotGonnaTellIt2U!@!

In Google Password Manager (passwords.google.com) click the gear symbol in the upper right.

Click "Import Passwords" then select the .csv file you just saved.

That should work.

Don't forget to overwrite your .csv file with junk before saving then deleting it.