Talking Clock

Talking Clock

Announce the time periodically, set custom recurring reminders and display time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "version": "1.0.0",
  "author": "Guokai Han",
  "manifest_version": 3,
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "offline_enabled": true,
  "minimum_chrome_version": "100",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "alarms",
    "tts",
    "idle",
    "background",
    "notifications"
  ],
  "icons": {
    "16": "icon/16.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "background": {
    "service_worker": "sw.js"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "commands": {
    "say-time": {
      "description": "__MSG_command_saytime__"
    }
  },
  "action": {
    "default_popup": "popup.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}