Send to Trello

Send to Trello

Create Trello cards from other webpages (especially for: Gmail, FogBugz, JIRA, Redmine, Assembla, Salesforce, RequestTracker)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "icon19.png",
      "38": "icon48.png"
    },
    "default_title": "Send to Trello"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://trello.com; object-src 'self'",
  "description": "Create Trello cards from other webpages (especially for: Gmail, FogBugz, JIRA, Redmine, Assembla, Salesforce, RequestTracker)",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 2,
  "name": "Send to Trello",
  "permissions": [
    "activeTab"
  ],
  "version": "1.1",
  "web_accessible_resources": [
    "jquery.min.js",
    "trello_bookmarklet.js"
  ]
}