Add Tasks to Do It (Tomorrow)

Add Tasks to Do It (Tomorrow)

Add tasks to Do it (Tomorrow) via a simple browser button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Add Tasks to Do It (Tomorrow)",
  "version": "1.2.5",
  "manifest_version": 2,
  "description": "Add tasks to Do it (Tomorrow) via a simple browser button.",
  "icons": {
    "16": "img/chrome_icon-16x16.png",
    "48": "img/chrome_icon-48x48.png",
    "128": "img/chrome_icon-128x128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "/img/icon19.png",
      "38": "/img/icon38.png"
    },
    "default_title": "Do it (Tomorrow)",
    "default_popup": "html/popup.html"
  },
  "background": {
    "scripts": [
      "/js/jquery-1.8.3.min.js",
      "/js/sync.js",
      "/js/main.js",
      "/js/background.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "omnibox": {
    "keyword": "t"
  },
  "options_page": "/html/options.html",
  "permissions": [
    "tabs",
    "history",
    "background",
    "storage",
    "contextMenus",
    "http://*/*",
    "https://*/*"
  ]
}