- Go to any userprofile on colonist.io
- click history tab on left (do not expand any history)
- paste below script in chrome developer tools >> console
var result="";var i=1;document.querySelectorAll('html >body > div > div > div > div > table > tbody > tr').forEach((x)=>{ if(i%2==0){ x.childNodes[0].childNodes[0].childNodes[1].querySelectorAll('td').forEach((y)=> {result+='\t'+y.textContent.replace(':','\t')}) } else { result+='\r\n'+x.innerText;} i++; });
- type result press enter(to see generated output)
No comments:
Post a Comment