TimeCloud

TimeCloud

A chrome extension that visualizes your time on the web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TimeCloud",
  "version": "0.6.0",
  "author": "Kaitlin Moreno",
  "description": "A chrome extension that visualizes your time on the web",
  "permissions": [
    "history",
    "tabs",
    "storage",
    "webNavigation",
    "idle",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "TimeTracker.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "TimeCloud: browser time tracker",
    "default_icon": "icons/icon.png"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "content_security_policy": "script-src 'self' https://cdnjs.cloudflare.com/; object-src 'self'",
  "manifest_version": 2
}