Created
May 7, 2016 20:49
-
-
Save dotspencer/43f9a173201b5c60d96e9fee6c05c2cd to your computer and use it in GitHub Desktop.
Free Gmail Checker
This file contains hidden or 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
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