Examine source code of Trellisto for Trello Plugin

Inspect and view changes in Trellisto for Trello Plugin 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": "Trellisto for Trello Plugin",
  "version": "1.2.0",
  "description": "Displays a consolidated list of cards from all Trello boards",
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/*/cards"
      ],
      "css": [
        "css/trellisto-styles.css"
      ],
      "js": [
        "scripts/trellisto-scripts.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "icons/icon_16x16.png",
    "48": "icons/icon_48x48.png",
    "128": "icons/icon_128x128.png"
  },
  "permissions": [
    "storage"
  ]
}