Question: Hello. I'm working on a Google Chrome Extension. I have a functioning task list currently, but cannot figure out how to create an alarm option
Hello. I'm working on a Google Chrome Extension. I have a functioning task list currently, but cannot figure out how to create an alarm "option" for the user to set. Would someone mind helping me out? I'm looking for a user specified input for a date and time for an alarm IF they choose to create an alarm for a task. I would really appreciate the help. Thank you! ---manifest.json--- { "name": "ToDo Task List", "description": "Allows user to enter in tasks to a list", "version": "1.0", "manifest_version": 2, "permissions": ["alarms", "notifications", "storage"], "browser_action": { "default_icon": "icon16.png", "default_title": "To-Do List", "default_popup": "popup.html" }, "icons": { "128": "icon128.png", "48": "icon48.png", "32": "icon32.png", "16": "icon16.png" } }
-----------end manifest------------
---popup.html---
To-Do List
Add
