Don't Forget

Don't Forget

Don't Forget lets you add reminders to chrome which get synced across all sync enabled chrome instances

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Don't Forget",
  "author": "dcarps",
  "description": "Don't Forget lets you add reminders to chrome which get synced across all sync enabled chrome instances",
  "version": "1.0.5",
  "permissions": [
    "notifications",
    "storage",
    "alarms"
  ],
  "background": {
    "page": "background/background.html",
    "persistent": true
  },
  "manifest_version": 2,
  "omnibox": {
    "keyword": "df"
  },
  "browser_action": {
    "default_icon": "img/logo_BW128.png",
    "default_popup": "popup/DontForget.html"
  },
  "icons": {
    "128": "img/logo128.png"
  },
  "options_page": "other/alarmmgmt.html"
}