Cheet

Cheet

Just cheat bro.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Cheet",
  "description": "Just cheat bro.",
  "version": "2.4",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/canvas.js"
      ],
      "matches": [
        "https://learn.canvas.net/courses/*",
        "*://*.instructure.com/*",
        "*://*.laccd.edu/*",
        "*://*.pasadena.edu/*"
      ]
    },
    {
      "css": [
        "css/index.css"
      ],
      "js": [
        "scripts/index.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_title": "Stud Cheat",
    "default_popup": "popup/index.html"
  }
}