Super Mario Bros Game

Super Mario Bros Game

Playing the role of the Mario. Original super mario game online right in your browser. Join the game any time you wished to

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": 3,
  "offline_enabled": true,
  "version": "1.0.2",
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "permissions": [
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "*.*"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "action": {
    "default_icon": "images/128.png",
    "default_title": "Mario",
    "default_popup": "assets/index.html"
  },
  "content_scripts": [
    {
      "js": [
        "assets/ui.js"
      ],
      "all_frames": true,
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "worker.js"
  }
}