Reminder App

Reminder App

Remember with the Reminder app, it's simple to set a reminder for Windows and Mac to take medicine, drink water, and pills.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.0.8",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "manifest_version": 3,
  "permissions": [
    "alarms",
    "notifications",
    "offscreen",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "19": "images/icons/icon_bar_19.png",
      "38": "images/icons/icon_bar_38.png"
    },
    "default_title": "Manage your reminders"
  },
  "icons": {
    "16": "images/icons/icon_16.png",
    "32": "images/icons/icon_32.png",
    "48": "images/icons/icon_48.png",
    "64": "images/icons/icon_64.png",
    "96": "images/icons/icon_96.png",
    "128": "images/icons/icon_128.png"
  }
}