Examine source code of First Base: The Packaged App Boilerplate

Inspect and view changes in First Base: The Packaged App Boilerplate 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": "First Base: The Packaged App Boilerplate",
  "short_name": "First Base",
  "minimum_chrome_version": "39.0",
  "version": "2.0.1",
  "icons": {
    "16": "img/glass-16.png",
    "128": "img/empty-glass.png"
  },
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "permissions": [
    "webview",
    "fullscreen",
    "contextMenus",
    "fileSystem"
  ]
}