Better Blackboard
Slight modifications to Blackboard to make it a bit better.
Was ist Better Blackboard?
Better Blackboard ist eine Chrome-Erweiterung, die von Matthew Kilpatrick entwickelt wurde, und ihr Hauptmerkmal ist "Slight modifications to Blackboard to make it a bit better.".
Erweiterungsscreenshots
Better Blackboard-Erweiterungs-CRX-Datei herunterladen
Laden Sie Better Blackboard-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This add-on makes some minor modifications to the University of Manchester Blackboard homepage to make it more usable:
- Replace the 'welcome' image with a list of upcoming deadlines, and submission links
- Hide previous semester course units from the "Current courses" tab
The source code for this add-on can be found at https://github.com/Matthew-Kilpatrick/Better-Blackboard Grundlegende Informationen zur Erweiterung
| Name | |
| ID | fkpohfnejjimkfbdfmlojhjmgjajckkk |
| Offizielle URL | https://chromewebstore.google.com/detail/better-blackboard/fkpohfnejjimkfbdfmlojhjmgjajckkk |
| Beschreibung | Slight modifications to Blackboard to make it a bit better. |
| Dateigröße | 22.81 KB |
| Installationsanzahl | 131 |
| Aktuelle Version | 1.1.2 |
| Letztes Update | 2021-02-22 |
| Veröffentlichungsdatum | 2021-02-22 |
| Bewertung | 4.20/5 Insgesamt 5 Bewertungen |
| Entwickler | Matthew Kilpatrick |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/Matthew-Kilpatrick/Better-Blackboard |
| Hilfeseite URL | https://github.com/Matthew-Kilpatrick/Better-Blackboard/issues |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Better Blackboard",
"version": "1.1.2",
"icons": {
"16": "assets\/icons\/favicon-16.png",
"32": "assets\/icons\/favicon-32.png",
"48": "assets\/icons\/favicon-48.png",
"128": "assets\/icons\/favicon-128.png"
},
"description": "Slight modifications to Blackboard to make it a bit better.",
"homepage_url": "https:\/\/github.com\/Matthew-Kilpatrick\/better-blackboard",
"short_name": "Better Blackboard",
"permissions": [
"http:\/\/online.manchester.ac.uk\/*",
"https:\/\/online.manchester.ac.uk\/*"
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"author": "Matthew Kilpatrick",
"minimum_chrome_version": "49",
"content_scripts": [
{
"matches": [
"http:\/\/online.manchester.ac.uk\/*",
"https:\/\/online.manchester.ac.uk\/*"
],
"js": [
"js\/contentScript.bundle.js"
],
"css": [
"assets\/css\/contentScript.css"
]
}
]
} | |