Reminders

Reminders

Create scheduled reminders of different types, such as static text, notification, opening URL in new tab and task.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "version": "1.1.3",
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "author": "Eugene Dyakonov",
  "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",
    "128": "images/icons/icon_128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icons/icon_bar_19.png",
      "38": "images/icons/icon_bar_38.png"
    },
    "default_title": "__MSG_extension_name__",
    "default_popup": "index.html#!/list"
  },
  "options_page": "index.html#!/settings",
  "background": {
    "page": "index.html#!/eventPage"
  },
  "permissions": [
    "alarms",
    "notifications",
    "contextMenus",
    "storage"
  ]
}