Examine source code of Chrome App Builder

Inspect and view changes in Chrome App Builder 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",
  "version": "1.0.3",
  "manifest_version": 2,
  "minimum_chrome_version": "37.0.0.0",
  "name": "__MSG_appname__",
  "offline_enabled": true,
  "default_locale": "en",
  "app": {
    "background": {
      "scripts": [
        "js/foam.js",
        "js/cab.js",
        "background_main.js"
      ]
    }
  },
  "permissions": [
    "webview",
    "power",
    "storage",
    "system.display",
    "videoCapture",
    "geolocation",
    "pointerLock",
    {
      "fileSystem": [
        "write",
        "retainEntries",
        "directory"
      ]
    },
    "accessibilityFeatures.read",
    "accessibilityFeatures.modify"
  ],
  "icons": {
    "128": "img/128.png"
  },
  "kiosk_enabled": true
}