Examine source code of Trello Cards Optimizer

Inspect and view changes in Trello Cards Optimizer 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",
  "manifest_version": 2,
  "name": "Trello Cards Optimizer",
  "short_name": "TrelloCardsOptimizer",
  "homepage_url": "http://trellocards.com",
  "version": "3.62",
  "description": "Automatic card frontside formatting and coloring based on title and labels",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/*"
      ],
      "js": [
        "jquery-2.2.4.min.js",
        "fontawesome.js",
        "content.js",
        "optionpopup.js",
        "codemirror/codemirror.js",
        "codemirror/multiplex.js",
        "codemirror/javascript.js",
        "codemirror/clike.js",
        "codemirror/css.js",
        "codemirror/perl.js",
        "codemirror/php.js",
        "codemirror/python.js",
        "codemirror/ruby.js",
        "codemirror/sql.js",
        "codemirror/vb.js",
        "codemirror/vbscript.js",
        "codemirror/xml.js",
        "codemirror/htmlembedded.js",
        "codemirror/htmlmixed.js"
      ],
      "css": [
        "font-awesome-animation.min.css",
        "tco.css",
        "codemirror/codemirror.css"
      ]
    }
  ],
  "permissions": [
    "*://trello.com/*",
    "storage"
  ],
  "web_accessible_resources": [
    "images/*",
    "tcohelp.html",
    "optionpopup.html",
    "optionpopup.js",
    "changelog.txt",
    "changelogpopup.html",
    "TCOpublic.html",
    "logoicon.png"
  ],
  "browser_action": {
    "default_icon": {
      "16": "logoicon.png"
    },
    "default_title": "Trello Cards Optimizer\nClick to go to the TCO website\n",
    "default_popup": "TCOpublic.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  }
}