Alarm Clock

Alarm Clock

This is a simple chrome extension and ability to set upto 3 alarm times.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "bell.png",
    "default_title": "Alarm Clock",
    "name": "Alarm Clock",
    "default_popup": "popup.html"
  },
  "description": "This is a simple chrome extension and ability to set upto 3 alarm times.",
  "icons": {
    "128": "bell.png"
  },
  "web_accessible_resources": [
    "bell.png"
  ],
  "name": "Alarm Clock",
  "permissions": [
    "tabs",
    "storage",
    "notifications",
    "management",
    "unlimitedStorage",
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "manifest_version": 2,
  "version": "1.3"
}