Skip to content

Instantly share code, notes, and snippets.

@isleshocky77
isleshocky77 / Chrome_61_Backup_Saved_Passwords.js
Last active December 4, 2017 18:48 — forked from MoradiDavijani/Chrome 61 Backup Saved Passwords
As Chrome removed the "Backup" button in "Saved Passwords", you can make a backup from your passwords by running this code in the console!
// 1. Open chrome://settings/passwords
// 2. Open chrome developer tools (using F12 or Ctrl+Shift+i)
// 3. Run the following code in the console tab
// 4. Copy output in a text file and save it somewhere safe!
function asyncForEach(array, done, iterator) {
var i = 0;
next();
function next(err) {
if (err) {