Application: com.yogga-games.idiomatix
const manifestUrl = 'https://codepush.coolify.yogga-games.com/com.yogga-games.idiomatix/manifest.json';
const res = await fetch(manifestUrl, { cache: 'no-store' });
if (res.ok) {
const manifest = await res.json();
// Utiliser manifest.version, manifest.url, manifest.checksum
}