Life Calendar Chrome Extension

Life Calendar Chrome Extension

An Extension that shows you how much life you have to live when you open a tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Life Calendar Chrome Extension",
  "version": "1.0",
  "chrome_url_overrides": {
    "newtab": "lifecalendar.html"
  },
  "description": "An Extension that shows you how much life you have to live when you open a tab.",
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_title": "Life Calendar",
    "default_popup": "popup.html",
    "default_icon": {
      "128": "images/hourglass.png"
    }
  },
  "icons": {
    "128": "images/hourglass.png"
  },
  "manifest_version": 2
}