Alarm Me

Alarm Me

Uses the chrome.alarms API to allow the user to set alarms using an extension page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Alarm Me",
  "version": "1.8",
  "description": "Uses the chrome.alarms API to allow the user to set alarms using an extension page.",
  "manifest_version": 3,
  "background": {
    "service_worker": "bg-wrapper.js"
  },
  "permissions": [
    "alarms"
  ],
  "action": {}
}