Canvas Quick Student View

Canvas Quick Student View

Adds the Student View link to all pages in Canvas. Look for the spectacles icon at the top right.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Canvas Quick Student View",
  "version": "0.12",
  "description": "Adds the Student View link to all pages in Canvas. Look for the spectacles icon at the top right.",
  "icons": {
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "content.js"
      ],
      "css": [
        "styles.css"
      ],
      "matches": [
        "https://*.instructure.com/*",
        "http://*.instructure.com/*",
        "https://canvas.gu.se/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon128.png",
        "woAuthor.png",
        "wAuthor.png"
      ],
      "matches": [
        "https://*.instructure.com/*",
        "http://*.instructure.com/*",
        "https://canvas.gu.se/*"
      ]
    }
  ]
}