SPOT Survey Blocker

SPOT Survey Blocker

Prevent the SPOT survey pop-up from appearing on Virginia Tech's production Canvas page by removing the box and overlay elements.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SPOT Survey Blocker",
  "version": "0.2",
  "description": "Prevent the SPOT survey pop-up from appearing on Virginia Tech's production Canvas page by removing the box and overlay elements.",
  "content_scripts": [
    {
      "matches": [
        "https://canvas.vt.edu/*",
        "http://canvas.vt.edu/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}