UoM Blackboard Restyle

UoM Blackboard Restyle

A cleaner interface for the University of Manchester Blackboard with custom themes and dark mode.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "UoM Blackboard Restyle",
  "version": "1.23",
  "description": "A cleaner interface for the University of Manchester Blackboard with custom themes and dark mode.",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://online.manchester.ac.uk/*"
      ],
      "css": [
        "content.css",
        "iframe.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_icon": {
      "16": "icon-16.png",
      "48": "icon-48.png",
      "128": "icon-128.png"
    },
    "default_popup": "popup.html"
  }
}