Better Blackboard

Slight modifications to Blackboard to make it a bit better.

Qu'est-ce que Better Blackboard ?

Better Blackboard est une extension Chrome développée par Matthew Kilpatrick, et sa fonction principale est "Slight modifications to Blackboard to make it a bit better.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Better Blackboard

Téléchargez les fichiers d'extension Better Blackboard au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Better Blackboard Better Blackboard
ID fkpohfnejjimkfbdfmlojhjmgjajckkk
URL Officiel https://chromewebstore.google.com/detail/better-blackboard/fkpohfnejjimkfbdfmlojhjmgjajckkk
Description Slight modifications to Blackboard to make it a bit better.
Taille du Fichier 22.81 KB
Nombre d'Installations 131
Version Actuelle 1.1.2
Dernière Mise à Jour 2021-02-22
Date de Publication 2021-02-22
Évaluation 4.20/5 Total 5 Évaluations
Développeur Matthew Kilpatrick
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Matthew-Kilpatrick/Better-Blackboard
URL de la Page d'Aide https://github.com/Matthew-Kilpatrick/Better-Blackboard/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}