Alarm, Timer and Stopwatch

Alarm, Timer and Stopwatch

A powerful alarm extension that supports multiple timers and stopwatches with five to ten-minute snooze.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "0.2.7",
  "name": "Alarm, Timer and Stopwatch",
  "description": "__MSG_description__",
  "default_locale": "en",
  "permissions": [
    "storage",
    "alarms",
    "idle",
    "contextMenus"
  ],
  "offline_enabled": true,
  "homepage_url": "https://webextension.org/listing/alarm.html",
  "background": {
    "service_worker": "worker.js"
  },
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png",
    "256": "data/icons/256.png",
    "512": "data/icons/512.png"
  },
  "action": {
    "default_popup": "data/popup/index.html"
  },
  "options_ui": {
    "page": "data/options/index.html"
  },
  "commands": {
    "_execute_action": {},
    "open-interface": {
      "description": "Open the interface in a window"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}