Google Inbox to Trello

Google Inbox to Trello

Quickly create Trello cards from mails and reminders in Google Inbox

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Google Inbox to Trello",
  "short_name": "Inbox to Trello",
  "description": "Quickly create Trello cards from mails and reminders in Google Inbox",
  "version": "1.1.2",
  "author": "Jeppe Reinhold",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "64": "icon-64.png",
    "96": "icon-96.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://inbox.google.com/*"
      ],
      "js": [
        "js/browser-polyfill.min.js",
        "js/content_script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/browser-polyfill.min.js",
      "js/background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "storage",
    "tabs",
    "https://inbox.google.com/*"
  ],
  "web_accessible_resources": [
    "trello-btn-icon-black-24dp.png",
    "trello-btn-icon-black-24dp-2x.png",
    "trello-btn-icon-black-24dp-4x.png"
  ]
}