Funkyclock

Funkyclock

Displays the current time and date in different exceptional ways. Also provides a unique alarm function

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Funkyclock",
  "version": "2.1",
  "manifest_version": 2,
  "description": "Displays the current time and date in different exceptional ways. Also provides a unique alarm function",
  "browser_action": {
    "default_icon": "funkyclock.png",
    "default_popup": "funkyclock.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "sandbox": {
    "pages": [
      "raphael.js"
    ]
  },
  "permissions": [
    "notifications",
    "background"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "icons": {
    "16": "icons/funkyclocksmall.png",
    "48": "icons/funkyclockmedium.png",
    "128": "icons/funkyclockbig.png"
  },
  "offline_enabled": true
}