Last active
October 26, 2017 20:37
-
-
Save ppsirius/085459a7486641fdb5134ebb2b3c2e02 to your computer and use it in GitHub Desktop.
search warez link by hosting
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 sortedLinkByHosting = []; | |
| let elements = document.querySelectorAll('td .code'); | |
| elements.forEach(key => { | |
| let link = key.innerText; | |
| if(link.includes('http')) { | |
| if(link.includes('catshare')) { | |
| sortedLinkByHosting.push(link); | |
| } | |
| } | |
| }) | |
| console.log(sortedLinkByHosting.join('\n')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment