Gets all links on the current page
$('link').map((r,k) => console.log($(k).attr('href')))
$("a").map((k,a) => {
var url = $(a).attr("href");
if(url.includes("/te3/out.php?id=")){
var link = url.split("=")[1]
console.log(`www.${link}`)
}
})