Sniper Gun Shooting Game

Sniper Gun Shooting Game

Sniper Gun Shooting Game in browser with 3D graphics

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.1.0",
  "action": {
    "default_icon": "128.png"
  },
  "manifest_version": 3,
  "background": {
    "service_worker": "service_worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "Build/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "Build/cache.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "default_locale": "en",
  "icons": {
    "128": "128.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "name": "Sniper Gun Shooting Game",
  "description": "__MSG_appDesc__"
}