Examine source code of Add to Trello

Inspect and view changes in Add to Trello 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": "Add to Trello",
  "description": "Add cards to your Trello boards from your browser",
  "version": "1.0.0",
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Add Cards to Trello"
  },
  "icons": {
    "16": "assets/images/icon16.png",
    "48": "assets/images/icon48.png",
    "128": "assets/images/icon128.png"
  },
  "permissions": [
    "tabs",
    "https://api.trello.com/"
  ],
  "web_accessible_resources": [
    "settings.html"
  ]
}