Daily Reminder

Daily Reminder

A simple break reminder, timer extension with notifications and sound options.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Daily Reminder",
  "version": "0.0.3",
  "description": "A simple break reminder, timer extension with notifications and sound options.",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "logo16.png",
      "48": "logo48.png",
      "128": "logo128.png"
    }
  },
  "permissions": [
    "notifications",
    "alarms",
    "offscreen",
    "tabs",
    "storage",
    "scripting"
  ],
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "offscreen.html",
        "offscreen.js",
        "sounds/*.mp3"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}