remindoro

remindoro

Repeat/One-time and email Reminders in your browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "remindoro",
  "version": "1.7.4",
  "manifest_version": 3,
  "description": "Repeat/One-time and email Reminders in your browser",
  "icons": {
    "16": "img/remindoro-icon-16.png",
    "128": "img/remindoro-icon.png"
  },
  "background": {
    "service_worker": "background/index.js",
    "type": "module"
  },
  "permissions": [
    "alarms",
    "background",
    "contextMenus",
    "notifications",
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "https://remindoro.app/*"
  ],
  "optional_permissions": [
    "tabs"
  ],
  "optional_host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_icon": {
      "19": "img/remindoro-icon-19.png",
      "38": "img/remindoro-icon-38.png"
    },
    "default_title": "Remindoro",
    "default_popup": "popup.html"
  }
}