Running man - Mario

Running man - Mario

Original game Mario were made in 80th and now it's online right in your browser. Play for Mario or Luigi directly in Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_AppName__",
  "description": "__MSG_AppDesc__",
  "default_locale": "en",
  "manifest_version": 2,
  "offline_enabled": true,
  "version": "1.1.2",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "storage",
    "webRequest",
    "http://*/*",
    "https://*/*",
    "webRequestBlocking",
    "alarms"
  ],
  "browser_action": {
    "default_icon": "icons/128.png",
    "default_title": "Mario",
    "default_popup": "game/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "game/ui.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "backg.js"
    ]
  }
}