Examine source code of Panel View for Asana

Inspect and view changes in Panel View for Asana 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": "Panel View for Asana",
  "description": "Panelized extension for Asana",
  "version": "2.4",
  "background": {
    "scripts": [
      "js/background.js",
      "js/events.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/icon_16.png"
  },
  "icons": {
    "16": "img/icon_16.png",
    "128": "img/icon_128.png"
  },
  "permissions": [
    "tabs",
    "https://app.asana.com/*"
  ],
  "content_scripts": [
    {
      "js": [
        "js/jquery-2.1.1.min.js"
      ],
      "matches": [
        "https://app.asana.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "js/asana-script.js"
      ],
      "matches": [
        "https://app.asana.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2
}