Last active
January 9, 2021 22:46
-
-
Save Ruffo324/eef6cd8dbe17b7feeb53bdd37203a1d4 to your computer and use it in GitHub Desktop.
List all namecheap domains as text
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
// Paste the following JS line into the Browser-Development-Tools Console. under https://ap.www.namecheap.com/domains/list/ | |
console.log([...document.querySelectorAll("div.gb-domain-name>label>span")].map(x => x.innerText).join('\n')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment