Skip to content

Instantly share code, notes, and snippets.

View Ryan6718's full-sized avatar

Ryan6718

  • Joined Sep 25, 2025
View GitHub Profile
@Ryan6718
Ryan6718 / index.html
Created September 25, 2025 09:34
Untitled
<!-- PWA manifest + iOS fullscreen -->
<link rel="manifest" href="manifest.webmanifest">
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => navigator.serviceWorker.register('sw.js'));
}
</script>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="apple-touch-icon" href="icons/icon-192.png">