Bonk VTOL

Bonk VTOL

Brings back the legendary gamemode known as VTOL to bonk.io

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bonk VTOL",
  "version": "5.0",
  "author": "Salama, (Salamana_)",
  "description": "Brings back the legendary gamemode known as VTOL to bonk.io",
  "permissions": [
    "webRequest",
    "webRequestBlocking"
  ],
  "background": {
    "service_worker": "service_worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://bonk.io/gameframe-release.html"
      ],
      "js": [
        "loadInjector.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "injector.js",
        "runInjectors.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {},
  "host_permissions": [
    "*://bonk.io/*"
  ]
}