If any wants a quick sky uk picon scraper. Here is a very simple html/javascript file.
I have other means - but might be useful to some people
Copy it to a text editor. Save it as html file.
run it in a browser.
/0/0/ if you want the full size graphics.
HTML
<!DOCTYPE html>
<html>
<head>
<title>Image Viewer</title>
<script>
function loadImages() {
var container = document.getElementById("imageContainer");
container.innerHTML = "";
for (var i = 1000; i <= 7500; i++) {
var img = document.createElement("img");
img.src = "https://d2n0069hmnqmmx.cloudfront.net/epgdata/1.0/newchanlogos/220/132/skychb" + i + ".png";
img.alt = "Image " + i;
img.style.margin = "5px";
container.appendChild(img);
}
}
</script>
</head>
<body style="background: #ddd;">
<button onclick="loadImages()">Load Images</button>
<div id="imageContainer"></div>
</body>
</html>
Display More
