Examine source code of Trello Grid Layout and Confetti Extension

Inspect and view changes in Trello Grid Layout and Confetti Extension 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": "Trello Grid Layout and Confetti Extension",
  "author": "Piyush Jha",
  "manifest_version": 2,
  "version": "1.1",
  "description": "This is a external Trello extension for Trello, that displays the cards in a grid layout and does a confetti when you finish a task.",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "script.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "audio.mp3"
  ],
  "permissions": [
    "tabs",
    "https://trello.com/*"
  ]
}