Open
Description
Summary:
Add a daily Chrome notification reminder (e.g., 10 AM) using the chrome.alarms
API to prompt users to submit their standup updates regularly. This will help keep users consistent and accountable without needing a manual nudge.
🎯 Goal:
- Alert users daily at a set time (default 10 AM) with a Chrome notification
- Optional: Automatically open the extension popup when clicked
🔧 Technical Requirements:
- Use
chrome.alarms.create()
to trigger daily alarms - Use
chrome.notifications.create()
to show the alert - (Optional) Open extension popup on click using
chrome.action.openPopup()
or redirect to popup.html (within permission constraints)
💡 Why This Matters:
- Increases user engagement and habit formation
- Ensures users don’t forget to submit standups
- Adds "smart assistant" feel to the extension
📁 Reference: