Examine source code of TExport

Inspect and view changes in TExport source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TExport",
  "version": "4.0",
  "manifest_version": 2,
  "description": "TExport allows to export Trello boards to Excel spreadsheets, HTML with Twig templates, Markdown and OPML.",
  "icons": {
    "128": "icons/trelloexport_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/*"
      ],
      "css": [
        "lib/jquery.growl.css",
        "lib/zebra/css/flat/zebra_dialog.css",
        "lib/bootstrap-multiselect/bootstrap-multiselect.css",
        "lib/tooltip.css",
        "lib/tingle.min.css",
        "lib/trelloexport.css"
      ],
      "js": [
        "lib/jquery-2.1.0.min.js",
        "lib/FileSaver.min.js",
        "lib/js-xlsx/jszip.js",
        "lib/js-xlsx/xlsx.full.min.js",
        "lib/linq.min.js",
        "lib/jquery.growl.js",
        "lib/zebra/zebra_dialog.js",
        "lib/injectTrelloExporter.js",
        "lib/datediff.js",
        "lib/showdown.min.js",
        "lib/bootstrap-multiselect/bootstrap-multiselect.js",
        "lib/tooltip.js",
        "lib/twig.min.js",
        "lib/tingle.min.js",
        "trelloexport.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "templates/*.twig",
    "templates/*.css"
  ],
  "homepage_url": "http://0.4.github.io"
}