Skip to content

Instantly share code, notes, and snippets.

@jruz
Last active November 3, 2015 12:52
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 jruz/808a9172085de8460bc6 to your computer and use it in GitHub Desktop.
Save jruz/808a9172085de8460bc6 to your computer and use it in GitHub Desktop.
Delete all your passwords from Google

Delete your passwords from Google

Delete them from Chrome

go to this url chrome://settings/clearBrowserData

Select the bigining of times and mark passwords checbox

Review theres nothing on chrome://settings/passwords

Delete from Google Passwords

go to https://passwords.google.com

open the console Control+Shift+J

Run $$('div[aria-label="Remove password"]').length to get an idea of the ammount

Run in batches of 200:
$$('div[aria-label="Remove password"]').forEach( function(el, i, a){ if (i < 200){ el.click() } } )

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