Cheat Together

Cheat Together

Enables to clone a test and colaboratively solve and fill answers and autofill the original test

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Cheat Together",
  "version": "1.15",
  "description": "Enables to clone a test and colaboratively solve and fill answers and autofill the original test",
  "permissions": [
    "tabs",
    "webRequest"
  ],
  "host_permissions": [
    "https://teams.microsoft.com/*",
    "https://forms.office.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://forms.office.com/Pages/*",
        "https://forms.office.com/pages/*"
      ],
      "run_at": "document_start",
      "js": [
        "scripts/utils.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon48.png"
  },
  "action": {
    "default_popup": "popup.html"
  }
}