Todoist for Gmail

Todoist for Gmail

Stay on top of emails with Todoist for Gmail

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "6.1",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "todoist_16.png",
    "48": "todoist_48.png",
    "128": "todoist_128.png",
    "256": "todoist_256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://mail.google.com/*",
        "https://mail.google.com/*"
      ],
      "js": [
        "inboxsdk.js",
        "gmail_ext.js",
        "anywhere.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "http://*.todoist.com/*",
    "https://*.todoist.com/*",
    "https://mail.google.com/*",
    "http://mail.google.com/*"
  ],
  "web_accessible_resources": [
    "frame.html"
  ]
}