Examine source code of Ten or Equal - Number puzzle

Inspect and view changes in Ten or Equal - Number puzzle 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": "Ten or Equal - Number puzzle",
  "short_name": "Ten or Equal",
  "description": "Number puzzle game where you clear the field by selecting pairs of adjacent numbers who are equal or who's sum is ten",
  "version": "0.0.0.1",
  "manifest_version": 2,
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "sandbox": {
    "pages": [
      "default.html"
    ],
    "content_security_policy": "sandbox allow-scripts; script-src 'self' 'unsafe-eval'"
  },
  "icons": {
    "16": "game-16.png",
    "128": "game-128.png"
  }
}