๐Ÿ“ฒ
Install ScoreMyBiz App
Add to your home screen for instant access โ€” works like a native app

ScoreMyBiz App

Install on your phone โ€” works on Android & iOS
No app store needed ยท Works offline ยท Free

How to Install on Android
1
Open in Chrome browser
Make sure you're using Chrome on Android (not Samsung browser or Firefox)
2
Tap the 3 dots menu (โ‹ฎ)
Top right corner of Chrome browser
3
Tap "Add to Home screen"
Or look for "Install App" โ€” it appears automatically on supported sites
4
Tap "Add" to confirm
ScoreMyBiz icon appears on your home screen. Tap it to open โ€” just like any app!

Why Install? What You Get

โšกOpens instantly โ€” no browser, no URL, just tap
๐Ÿ“ตWorks offline โ€” enter numbers even without internet
๐Ÿ””Push notifications โ€” WhatsApp-style alerts when score drops
๐Ÿ Home screen icon โ€” looks exactly like a native app
๐Ÿ’พAuto-saves data โ€” numbers sync when back online
๐Ÿ“ฑFull screen โ€” no browser bar, more space for your data
๐Ÿ†“Free forever โ€” no app store, no download fees
๐Ÿ‘จโ€๐Ÿ’ป For Developers โ€” Code to Add to Each HTML File

Add this block inside the <head> section of your landing page, calculator, and dashboard HTML files:

<!-- โ•โ•โ• SCOREMYBIZ PWA โ€” ADD TO ALL HTML FILES โ•โ•โ• -->

<!-- PWA Manifest -->
<link rel="manifest" href="manifest.json">

<!-- Theme color (Android status bar) -->
<meta name="theme-color" content="#0055FF">

<!-- iOS / Apple specific -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="ScoreMyBiz">
<link rel="apple-touch-icon" href="icon-192.png">

<!-- Service Worker Registration -->
<script>
if ('serviceWorker' in navigator) {
  window.addEventListener('load', () => {
    navigator.serviceWorker.register('/sw.js')
      .then(reg => console.log('SW registered'))
      .catch(err => console.log('SW failed:', err));
  });
}
</script>

<!-- โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ• -->

After adding this code and uploading sw.js, manifest.json, and all icon-*.png files to your server โ€” ScoreMyBiz becomes a fully installable PWA app.

๐Ÿ”„
Checking PWA status...