Stats 😈

Stats 😈

Hacks the stats quiz

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Stats 😈",
  "author": "Llama Dev",
  "description": "Hacks the stats quiz",
  "version": "1.0",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "*://*.ltcconline.net/greenL/java/statistics/*"
      ],
      "js": [
        "inject.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://*.ltcconline.net/*"
      ],
      "resources": [
        "script.js"
      ]
    }
  ]
}