Examine source code of Wunderlist Chrome Panel

Inspect and view changes in Wunderlist Chrome Panel 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",
  "background": {
    "scripts": [
      "bg.js"
    ],
    "persistence": false
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Wunderlist"
  },
  "description": "An incredibly convenient panel for Wunderlist.",
  "icons": {
    "128": "icon.png"
  },
  "manifest_version": 2,
  "name": "Wunderlist Chrome Panel",
  "short_name": "Wunderlist Panel",
  "permissions": [
    "tabs",
    "https://www.wunderlist.com/"
  ],
  "options_page": "options.html",
  "version": "1.2",
  "content_scripts": [
    {
      "matches": [
        "https://www.wunderlist.com/*"
      ],
      "js": [
        "script.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}