Skip to content

Instantly share code, notes, and snippets.

@dotspencer
Created May 7, 2016 20:49
Show Gist options
  • Save dotspencer/43f9a173201b5c60d96e9fee6c05c2cd to your computer and use it in GitHub Desktop.
Save dotspencer/43f9a173201b5c60d96e9fee6c05c2cd to your computer and use it in GitHub Desktop.
Free Gmail Checker
var name = "brookesmith";
var number = 143;
var other = false;
var email = document.getElementById('GmailAddress');
email.focus();
// Clearing left side
document.getElementsByClassName('side-content')[0].innerHTML = "<p id='free-names'></p>";
var list = document.getElementById('free-names');
// Start the magic
window.setInterval(function(){
email.focus();
email.value = name + number;
window.setTimeout(function(){
email.blur();
}, 100);
window.setTimeout(function(){
if(!email.classList.contains('form-error')){
list.innerText += (name + number + "@gmail.com\n");
}
}, 200);
number++;
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment