Web-based games have a significant advantage over traditional desktop clients: they can use native browser notification APIs to reach you even when the game is not your active tab. If you play florr.io or any other browser game where timing matters, learning how to configure browser notifications properly is a genuinely useful skill.
How Browser Notifications Work
The Notifications API is a standard web platform feature supported by all modern browsers. When a website requests notification permission, the browser shows a system-level prompt asking whether you want to allow or deny it. If you allow it, the website can send notifications to your operating system's notification centre at any time — even if the page is in a background tab, minimised, or the browser window is partially obscured.
Notifications appear as desktop pop-ups (on Windows, macOS, and Linux) or as system notifications on mobile. They include a title, body text, and optionally an icon and an action button. Clicking the notification brings the corresponding browser tab into focus.
Enabling Notifications in Chrome
- Open the website (e.g., FlorrMobNotify) and wait for the permission prompt to appear.
- Click Allow in the browser permission bar at the top of the page.
- If you previously clicked Block, click the lock icon (🔒) in the address bar, find Notifications, and change it to Allow. Refresh the page for the change to take effect.
Enabling Notifications in Firefox
- When prompted, click Allow in the Firefox notification request bar.
- To reset a blocked permission, click the shield icon in the address bar, click Connection Secure, then More Information, then the Permissions tab. Find Send Notifications and uncheck Use Default, then set it to Allow.
Enabling Notifications in Safari (macOS)
- Safari requires you to allow notifications per-site. When prompted, click Allow.
- To manage permissions, go to Safari → Settings → Websites → Notifications and locate the site in the list.
- Note: Safari on iOS handles web notifications differently and may require the site to be added to the home screen as a Progressive Web App.
Ensuring Notifications Are Not Silenced by Your OS
Even with browser permissions granted, operating system-level Do Not Disturb (DND) or Focus modes will suppress notifications. Check the following:
- Windows: Check that Focus Assist is not enabled (Settings → System → Notifications → Focus Assist).
- macOS: Check that Focus mode is not active (Control Centre → Focus).
- Android: Ensure the browser app has notification permission in system settings (Settings → Apps → [Browser] → Permissions → Notifications).
Sound Notifications: The Second Layer of Alerting
Browser notifications alone can be missed if you are heavily focused on another task. Adding a sound component significantly improves reliability. FlorrMobNotify plays an audio alert alongside each browser notification by default, so even if the visual notification disappears before you see it, the sound catches your attention. You can adjust or mute sound independently of visual notifications in the Settings panel.
Performance Considerations
Having a notification page open in the background is very low overhead. FlorrMobNotify maintains a single persistent WebSocket connection and performs no rendering work when it is not the active tab. Memory usage is minimal, and the socket connection uses negligible bandwidth between events. You can leave it running indefinitely without meaningful impact on your system.
Setting up browser notifications correctly is a one-time task that pays off every session. Once configured, it works silently in the background and surfaces important information exactly when you need it.
