Examine source code of Offline Solitaire

Inspect and view changes in Offline Solitaire 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": "Offline Solitaire",
  "description": "A Solitaire (Klondike) game that can be played with no internet connection.",
  "short_name": "Solitaire",
  "version": "1.0.1",
  "minimum_chrome_version": "38",
  "manifest_version": 2,
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "64": "icons/icon_64.png",
    "96": "icons/icon_96.png",
    "128": "icons/icon_128.png"
  },
  "permissions": [
    "webview"
  ],
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "webview": {
    "partitions": [
      {
        "name": "good_trusted",
        "accessible_resources": [
          "testfile.html",
          "OfflineBrowserGames/war/*.html",
          "OfflineBrowserGames/war/*.js",
          "OfflineBrowserGames/war/*.css",
          "OfflineBrowserGames/war/*.png"
        ]
      }
    ]
  },
  "offline_enabled": true
}