Skip to content

Instantly share code, notes, and snippets.

@nkt
Last active August 29, 2015 14: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 nkt/df39a98b9f973acbba3a to your computer and use it in GitHub Desktop.
Save nkt/df39a98b9f973acbba3a to your computer and use it in GitHub Desktop.
Removes all chrome saved passwords
var removeButtons = document.querySelectorAll('#saved-passwords-list .row-delete-button')
Array.prototype.slice.call(removeButtons).forEach(function (el) {
el.click()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment