Examine source code of Memory Master

Inspect and view changes in Memory Master 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": "Memory Master",
  "description": "A card matching game in the style of Concentration.",
  "version": "1.2.0",
  "manifest_version": 2,
  "author": "Brandon Rice",
  "permissions": [
    "app.window",
    "storage",
    "<all_urls>",
    "webview"
  ],
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "app": {
    "background": {
      "scripts": [
        "scripts/main.js"
      ]
    }
  }
}