Skip to content

Instantly share code, notes, and snippets.

@Ruffo324
Last active January 9, 2021 22:46
Show Gist options
  • Save Ruffo324/eef6cd8dbe17b7feeb53bdd37203a1d4 to your computer and use it in GitHub Desktop.
Save Ruffo324/eef6cd8dbe17b7feeb53bdd37203a1d4 to your computer and use it in GitHub Desktop.
List all namecheap domains as text
// 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