Canvas Quiz Solution Remover

Canvas Quiz Solution Remover

Removes correct answers from canvas quizzes by edting the HTML

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Canvas Quiz Solution Remover",
  "description": "Removes correct answers from canvas quizzes by edting the HTML",
  "version": "1.0",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.min.js",
        "popup.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "image.png"
  }
}