UoM Blackboard Enhancement

UoM Blackboard Enhancement

Improve your experience of Blackboard of the University of Manchester.

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 Enhancement",
  "version": "0.2.0",
  "action": {
    "default_icon": {
      "128": "/assets/icon-128.png"
    },
    "default_title": "UoM Blackboard Enhancement",
    "default_popup": "/html/settings.html"
  },
  "description": "Improve your experience of Blackboard of the University of Manchester.",
  "icons": {
    "128": "/assets/icon-128.png",
    "256": "/assets/icon-256.png"
  },
  "author": "RyanXin",
  "homepage_url": "https://www.ryanxin.cn/",
  "omnibox": {
    "keyword": "bben"
  },
  "background": {
    "service_worker": "/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://online.manchester.ac.uk/*"
      ],
      "js": [
        "/js/home.js",
        "/js/common.js"
      ],
      "css": [
        "/css/home-portlet.css",
        "/css/home-courses.css",
        "/css/home-liveSessions.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://video.manchester.ac.uk/*"
      ],
      "js": [
        "/js/player.js"
      ],
      "css": [
        "/css/player.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "https://login.manchester.ac.uk/*"
      ],
      "js": [
        "/js/autologin.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "declarativeContent"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/js/home-inject.js"
      ],
      "matches": [
        "https://online.manchester.ac.uk/*"
      ]
    }
  ],
  "options_page": "/html/settings.html",
  "options_ui": {
    "page": "/html/settings.html"
  }
}