Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

how to import passwords from a file .CSV ?

  • 14 odpovedí
  • 2 majú tento problém
  • 3 zobrazenia
  • Posledná odpoveď od cor-el

more options

pls help

pls help

Všetky odpovede (14)

more options

What application created this CSV file ?

You might be able to import the logins if you convert the CSV file to a JSON file.

more options

avast passwords created. "if you convert the CSV file to a JSON file." How to do it?

more options

my excel didnt can it convert to json file

more options

First you may have to convert your CSV files into a JSON array. There are bunch of online services to do that.

CSV to Json : https://www.csvjson.com/csv2json

Then you can import them via FireFox's default importing feature.

- Press Ctrl+Shift+B. This will open your 'Library' window. - Then, Import and Backup > Restore > Choose File

- After that you can just select and upload your generated JSON file. - Firefox will import all details from that JSON file.

Hope this helps!

more options

JSON file does not contain passwords!

more options

You need to convert a CSV file with hostname and username and password columns to an array of JSON name/key values ([{"username":"xxx","password":"xxx","hostname":"https://"},{more-logins}]).

See:

more options

for example so?: ([{"username":"User","password":"123456qwer","hostname":"https://facebook.com"},{more-logins}])

what is the string for "more logins"?

more options

Reset multiple user account passwords.

   Configure Settings that User must change passwords at next logon.
   Set passwords that never expire.
   Enable, Disable or Delete users, if their passwords are expired.
   Configure that users can't change passwords set by the administrator.
more options

I only posted one example of a valid usenname/password representation.

There can be more such records in this '[{},{},{}]' array with each of them being something like this{"username":"User","password":"123456qwer","hostname":"https://facebook.com"}. See it as a comma separated list of usernames and passwords in JSON format.

more options

its normal?

more options

You pasted JSON code in the input area on the CSV to JSON converter website. The purpose is to paste the content of the CSV file in taht area, then the website will convert this to JSON and you can compare the result with the code I posted as an example.

more options

ok i saved this example and how to import this in firefox?

I tried the method via CTRL + SHIFT + B

- Press Ctrl+Shift+B. This will open your 'Library' window. - Then, Import and Backup > Restore > Choose File - After that you can just select and upload your generated JSON file. - Firefox will import all details from that JSON file.

But the password did not appear in browser

more options

You can't import passwords via the Bookmarks Manager (Library). You might be able to do this via "File -> Import From Another Browser", but probably best is to use the Browser Console like I posted in the above linked forum thread.

Note that this needs to be an array enclosed in square brackets: [{login1},{login2}]