LifeCal

LifeCal is a tab extension which aims to bring your whole life into perspective.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LifeCal",
  "description": "LifeCal is a tab extension which aims to bring your whole life into perspective.",
  "version": "1.0",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "logo-small.png"
  },
  "permissions": [
    "management",
    "history",
    "storage"
  ],
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'"
}