Mad Gunz Unblocked

Mad Gunz Unblocked

Mad Gunz unblocked game multiplayer for chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Mad Gunz Unblocked",
  "description": "Mad Gunz unblocked game multiplayer for chrome",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.1",
  "icons": {
    "128": "img/128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_title": "Mad Gunz Unblocked",
    "default_icon": "img/128.png"
  },
  "sandbox": {},
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "play/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}