Capture for Trello

Capture for Trello

Capture screenshot and report visual bugs directly into Trello, without leaving your website or web app.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Capture for Trello",
  "description": "Capture screenshot and report visual bugs directly into Trello, without leaving your website or web app.",
  "version": "1.0.0",
  "permissions": [
    "tabs",
    "*://*/*",
    "<all_urls>"
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "[email protected]",
    "default_title": "Create a card"
  },
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "cardCreate.html"
  ]
}