YTLitePlus_/Altstore/index.html
2023-07-07 17:21:05 +02:00

24 lines
No EOL
625 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Altstore JSON Content</title>
<script>
fetch("https://raw.githubusercontent.com/Balackburn/YTLitePlusAltstore/main/apps.json")
.then((response) => {
if (!response.ok) {
throw new Error("HTTP error " + response.status);
}
return response.text();
})
.then((data) => {
document.body.innerHTML = "<pre>" + data + "</pre>";
})
.catch((error) => {
console.error("Fetch Error: ", error);
});
</script>
</head>
<body>
</body>
</html>