Anti-cheat extension for Surviv.io

Anti-cheat extension for Surviv.io

This extension prevents cheaters from killing you by restricting your access to the game.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Anti-cheat extension for Surviv.io",
  "description": "This extension prevents cheaters from killing you by restricting your access to the game.",
  "version": "0.0.2",
  "options_page": "index.html",
  "permissions": [
    "*://surviv.io/*"
  ],
  "content_scripts": [
    {
      "js": [
        "injection.js"
      ],
      "matches": [
        "*://www.surviv.io/*",
        "*://surviv.io/*"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png"
  },
  "web_accessible_resources": [
    "index.html",
    "main.js",
    "favicon.ico"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}