Examine source code of Jumper

Inspect and view changes in Jumper 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": "Jumper",
  "description": "Take a break, Open a new tab and play little cool game! :)",
  "version": "1.1",
  "browser_action": {
    "default_icon": "corporate_art.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "game.js"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "icons": {
    "128": "corporate_art.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "myScripts.js",
        "game.js"
      ],
      "css": [
        "newtab.css"
      ]
    }
  ]
}