Todo Reminder

Todo Reminder

It notifies when becoming schedule time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Todo Reminder",
  "description": "__MSG_description__",
  "version": "0.0.0.5",
  "manifest_version": 2,
  "background": {
    "page": "html/background.html"
  },
  "options_page": "html/options/config.html",
  "default_locale": "ja",
  "browser_action": {
    "default_title": "TODO Reminder",
    "default_icon": "images/icon_48.png",
    "default_popup": "html/popup.html"
  },
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "permissions": [
    "notifications",
    "tabs",
    "background",
    "http://*/*",
    "https://*/*",
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    "images/Google_calendar.jpg",
    "images/recycle_open.png"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'"
}