Better Blackboard

Slight modifications to Blackboard to make it a bit better.

Hvad er Better Blackboard?

Better Blackboard er en Chrome-udvidelse udviklet af Matthew Kilpatrick, og dens hovedfunktion er "Slight modifications to Blackboard to make it a bit better.".

Udvidelsesskærmbilleder

screenshot

Download Better Blackboard-udvidelses-CRX-fil

Download Better Blackboard-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Better Blackboard Better Blackboard
ID fkpohfnejjimkfbdfmlojhjmgjajckkk
Officiel URL https://chromewebstore.google.com/detail/better-blackboard/fkpohfnejjimkfbdfmlojhjmgjajckkk
Beskrivelse Slight modifications to Blackboard to make it a bit better.
Filstørrelse 22.81 KB
Antal Installationer 131
Nuværende Version 1.1.2
Senest Opdateret 2021-02-22
Udgivelsesdato 2021-02-22
Bedømmelse 4.20/5 Samlet 5 Bedømmelser
Udvikler Matthew Kilpatrick
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/Matthew-Kilpatrick/Better-Blackboard
Hjælpeside-URL https://github.com/Matthew-Kilpatrick/Better-Blackboard/issues
Understøttede Sprog 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"
            ]
        }
    ]
}