mirror of
https://github.com/YTLitePlus/YTLitePlus.git
synced 2026-04-18 20:42:05 +00:00
24 lines
No EOL
625 B
HTML
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> |