Better Blackboard

Slight modifications to Blackboard to make it a bit better.

Cos'è Better Blackboard?

Better Blackboard è un'estensione di Chrome sviluppata da Matthew Kilpatrick, e la sua funzione principale è "Slight modifications to Blackboard to make it a bit better.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Better Blackboard

Scarica i file di estensione Better Blackboard in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Better Blackboard Better Blackboard
ID fkpohfnejjimkfbdfmlojhjmgjajckkk
URL Ufficiale https://chromewebstore.google.com/detail/better-blackboard/fkpohfnejjimkfbdfmlojhjmgjajckkk
Descrizione Slight modifications to Blackboard to make it a bit better.
Dimensione del File 22.81 KB
Conteggio Installazioni 131
Versione Corrente 1.1.2
Ultimo Aggiornamento 2021-02-22
Data di Pubblicazione 2021-02-22
Valutazione 4.20/5 Totale 5 Valutazioni
Sviluppatore Matthew Kilpatrick
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Matthew-Kilpatrick/Better-Blackboard
URL della Pagina di Aiuto https://github.com/Matthew-Kilpatrick/Better-Blackboard/issues
Lingue Supportate 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"
            ]
        }
    ]
}