Countdown

Countdown

“If you live each day as if it were your last, someday you’ll most certainly be right.”

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Countdown",
  "description": "“If you live each day as if it were your last, someday you’ll most certainly be right.”",
  "version": "1.1",
  "incognito": "split",
  "background": {
    "persistent": false,
    "scripts": [
      "countdown.js"
    ]
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "assets/icon-16.png",
    "48": "assets/icon-48.png",
    "128": "assets/icon-128.png"
  },
  "chrome_url_overrides": {
    "newtab": "countdown.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "manifest_version": 2
}