Xout

Xout

The simplest way to keep track of work. Use Xout to quickly create tasks and get stuff done.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Xout",
  "description": "The simplest way to keep track of work. Use Xout to quickly create tasks and get stuff done.",
  "version": "0.2.2",
  "background": {
    "persistent": false,
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage",
    "https://www.google-analytics.com/",
    "gcm"
  ],
  "icons": {
    "16": "img/icons/icon16.png",
    "48": "img/icons/icon48.png",
    "128": "img/icons/icon128.png"
  },
  "web_accessible_resources": [
    "img/*"
  ],
  "chrome_url_overrides": {
    "newtab": "todo-view.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}