Any Reminder

Any Reminder

A Reminder and Tracking Extension which shows desktop notifications.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Any Reminder",
  "short_name": "AnyReminder",
  "version": "1.0",
  "author": "Manav Shrivastava",
  "homepage_url": "https://github.com/manavshrivastavagit/AnyReminder-ChromeExtension.git",
  "description": "A Reminder and Tracking Extension which shows desktop notifications.",
  "icons": {
    "32": "icon.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png",
    "256": "icon256.png"
  },
  "permissions": [
    "storage",
    "notifications",
    "contextMenus"
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "options_page": "notification_options.html",
  "background": {
    "scripts": [
      "notification_background.js",
      "eventPage.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "icon.png"
  ]
}