Created
October 26, 2016 13:19
-
-
Save Grogs/b08d1fa288c3b6bb29ee3703218c2300 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.querySelectorAll("#saved-passwords-list > .deletable-item > div").forEach(function(p) { | |
var url = p.querySelector(".url").title | |
var login = p.querySelector(".name").title | |
var password = p.querySelector(".password > input").value | |
console.log(url+"|"+login+"|"+password) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Related: How can I export chrome passwords?