Card to Calendar

Card to Calendar

Take cards from Google Now in Gmail and add them to your calendar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Card to Calendar",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "Take cards from Google Now in Gmail and add them to your calendar.",
  "homepage_url": "http://github.com/zachfeldman/card_to_calendar",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "permissions": [
    "tabs",
    "*://mail.google.com/*"
  ],
  "background": {
    "scripts": [
      "src/background/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "js": [
        "src/inject/moment.min.js",
        "src/inject/jquery-1.11.1.min.js",
        "src/inject/inject.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icons/icon19.png"
  }
}