Timebite - Online wasted time tracker

See what takes the biggest bites out of your day
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": "Timebite - Online wasted time tracker",
  "short_name": "Timebite",
  "version": "1.0.5",
  "manifest_version": 2,
  "description": "See what takes the biggest bites out of your day",
  "background": {
    "scripts": [
      "scripts/lib.js",
      "scripts/db.js",
      "scripts/ga.js",
      "scripts/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_popup": "html/popup.html",
    "default_title": "Timebite"
  },
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "options_page": "html/settings.html",
  "options_ui": {
    "page": "html/settings.html",
    "chrome_style": true
  },
  "permissions": [
    "tabs"
  ]
}