Whiteboard

Whiteboard

Whiteboard is a UI enhancement suite for The University of Texas at Dallas's online learning platform, eLearning. This extension…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Whiteboard",
  "version": "1.3.4",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://elearning.utdallas.edu/*",
        "https://coursebook.utdallas.edu/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "*"
  ],
  "background": {
    "scripts": [
      "bg_page.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "temoc16.png",
    "48": "temoc48.png",
    "128": "temoc128.png"
  }
}