<html><body><script src="https://cdn.jsdelivr.net/webtorrent/latest/webtorrent.min.js"></script><script>var client = new WebTorrent()client.add('https://webseed.btorrent.xyz/juanpabloaj/other-page.torrent', function (torrent) {// Got torrent metadata!console.log('Client is downloading:', torrent.infoHash)torrent.files[0].getBlobURL(function(err, url) {if (err) return console.log(err)var a = document.createElement('a')a.target = '_blank'a.download = torrent.files[0].namea.href = urla.textContent = 'Download ' + torrent.files[0].namedocument.body.appendChild(a)})})</script></body></html>