Remind Me

Remind Me

Shows off desktop notifications

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "js/notification.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "19": "assets/icons/remind-me-logo-19x19.png",
      "38": "assets/icons/remind-me-logo-38x38.png"
    },
    "default_popup": "remind-me.html"
  },
  "description": "Shows off desktop notifications",
  "icons": {
    "16": "assets/icons/remind-me-logo-16x16.png",
    "48": "assets/icons/remind-me-logo-48x48.png",
    "128": "assets/icons/remind-me-logo-128x128.png"
  },
  "manifest_version": 3,
  "name": "Remind Me",
  "permissions": [
    "notifications",
    "background",
    "alarms",
    "storage"
  ],
  "short_name": "Remind Me",
  "version": "3.3",
  "version_name": "v3.3",
  "web_accessible_resources": [
    {
      "resources": [
        "assets/images/alarm_48x48.png",
        "assets/images/success_green_thumb_48_48.png",
        "assets/audio/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}