Created
April 10, 2014 22:23
-
-
Save stuartpb/10428701 to your computer and use it in GitHub Desktop.
Script for dumping / re-constructing multiple domain transfer list on NameSilo
This file contains 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
// for https://www.namesilo.com/transfer_results.php | |
[].slice.call(document.querySelectorAll('input[name$="_transfer_auth_code"]')) | |
.map(function (el) { | |
return el.name.slice(0,-"_transfer_auth_code".length).replace(/_/g,'.') | |
+ ', ' + el.value}) | |
.join('\n'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment