Created
January 4, 2022 21:09
-
-
Save ricealexander/b13109ad196d89fdfe15e3a096d35f1e to your computer and use it in GitHub Desktop.
List of Domain Name/Expiration Dates from Porkbun
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
let rows = document.querySelectorAll('.domainManagementRow') | |
let result = '' | |
for (let row of rows) { | |
let name = row.querySelector('.domainManagementDomainName').textContent | |
let expiration = row.querySelector('.toolTip.expiration-').textContent | |
result += `${name.trim()}\t\t\tExpires ${expiration.trim()}\n` | |
} | |
console.log(result) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment