Last active
May 20, 2021 21:57
-
-
Save yeisoncruz16/8341cb05c7f8f9f0031d2cfd56f0c91c to your computer and use it in GitHub Desktop.
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 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; |
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
Please run this core at
about:blank