I was trying to delete all the passwords stored in google at Google passwords, way too many to do manually!
Couldn't find a solution online so here is my easy one:
- Go to Google passwords, sign in to your account.
- Open the development tools in your browser, usually with F12. I’ve used Chrome.
- Paste the following code in the console.
1// Gets all the elements to be clicked to delete the passwords.
2var a = document.getElementsByClassName(“dga”)
3// Click all the elements.
4for(i=0; i < a.length; i++){a[i].click();}