Skip to content

Instantly share code, notes, and snippets.

@zetrider
Created November 30, 2015 20:13
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 zetrider/f36ad5aa1bca16d648cc to your computer and use it in GitHub Desktop.
Save zetrider/f36ad5aa1bca16d648cc to your computer and use it in GitHub Desktop.
Delete all password in passwords.google.com
//in console
var jq = document.createElement('script');
jq.src = "//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
... wait 5 sec ...
jQuery(document).ready(function($) {
$('.dga').each(function(){
$(this).click();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment