Time to Live - Visualize Your Life in Weeks

Time to Live - Visualize Your Life in Weeks

A Chrome extension that replaces the New Tab page and displays how much of your life has elapsed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Time to Live - Visualize Your Life in Weeks",
  "version": "1.1",
  "description": "A Chrome extension that replaces the New Tab page and displays how much of your life has elapsed.",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "fonts/roboto-mono-v13-latin-regular.eot",
        "fonts/roboto-mono-v13-latin-regular.woff2",
        "fonts/roboto-mono-v13-latin-regular.woff",
        "fonts/roboto-mono-v13-latin-regular.ttf",
        "fonts/roboto-mono-v13-latin-regular.svg"
      ],
      "matches": [
        "chrome://newtab/*"
      ]
    }
  ]
}