Skip to content

Instantly share code, notes, and snippets.

@yeisoncruz16
Last active May 20, 2021 21:57
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 yeisoncruz16/8341cb05c7f8f9f0031d2cfd56f0c91c to your computer and use it in GitHub Desktop.
Save yeisoncruz16/8341cb05c7f8f9f0031d2cfd56f0c91c to your computer and use it in GitHub Desktop.
var email = "YOU_EMAIL_WITHOUT_GMAIL_GOES_HERE";
var emailList = [];
for(let i = 1; i < email.length - 1; i++){
for(let x = 1; x <= email.length; x++){
if(i+1 !== x && i != x) {
let splitEmail = email.split("");
splitEmail.splice(i, 0, '.');
splitEmail.splice(x, 0, '.');
var alreadyExist = emailList.some(email => email === splitEmail.join(""));
if(!alreadyExist)
emailList.push(splitEmail.join(""));
}
}
}
document.querySelector("body").innerHTML = emailList;
@yeisoncruz16
Copy link
Author

Please run this core at about:blank

@yeisoncruz16
Copy link
Author

How to use it

  • Open a new browser tab and paste this, about:blank
  • Press F12
  • Copy tis code snippet and past on browser console
  • replace the string YOU_EMAIL_WITHOUT_GMAIL_GOES_HERE with your email
  • Please Eenter
  • That's all, you already have the emails separated by , at the screen

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment