Tunnel Rush

Tunnel Rush

Tunnel Rush Unblocked game where you run through a tunnel and avoid obstacles.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "action": {
    "default_title": "Tunnel Rush Unblocked",
    "default_icon": "icon/32.png"
  },
  "version": "1.5",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "permissions": [
    "storage"
  ],
  "description": "Tunnel Rush Unblocked game where you run through a tunnel and avoid obstacles.",
  "manifest_version": 3,
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts; script-src 'self' 'unsafe-eval' blob: 'unsafe-inline'; object-src 'self' 'unsafe-eval' blob: 'unsafe-inline';child-src 'self' 'unsafe-eval' blob: 'unsafe-inline' ; worker-src 'self' 'unsafe-eval' blob: 'unsafe-inline'; script-src-elem 'self' 'unsafe-eval' blob: 'unsafe-inline'"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "js/content.js"
      ]
    }
  ],
  "sandbox": {
    "pages": [
      "page.html"
    ]
  },
  "name": "Tunnel Rush",
  "icons": {
    "32": "icon/32.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icon/32.png",
        "icons.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ]
}