Show a preview for SVG files.

Show a preview for SVG files.

This extension allows the preview of SVG files on Trello

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Show a preview for SVG files.",
  "description": "This extension allows the preview of SVG files on Trello",
  "version": "1.0",
  "page_action": {
    "default_title": "Trello SVG Preview"
  },
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/*"
      ],
      "js": [
        "jquery.min.js",
        "svg.js"
      ]
    }
  ],
  "permissions": [
    "https://trello.com/"
  ]
}