Better Brightspace

Changes the Brightspace homepage to focus on current courses.

Cos'è Better Brightspace?

Better Brightspace è un'estensione di Chrome sviluppata da 2matto, e la sua funzione principale è "Changes the Brightspace homepage to focus on current courses.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Better Brightspace

Scarica i file di estensione Better Brightspace 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

                                            

Informazioni di Base sull'Estensione

Nome Better Brightspace Better Brightspace
ID hgfcmgimdjhecjhmhemcdibgfcnhmmgd
URL Ufficiale https://chromewebstore.google.com/detail/better-brightspace/hgfcmgimdjhecjhmhemcdibgfcnhmmgd
Descrizione Changes the Brightspace homepage to focus on current courses.
Dimensione del File 47.41 KB
Conteggio Installazioni 45
Versione Corrente 0.0.0.6
Ultimo Aggiornamento 2019-01-21
Data di Pubblicazione 2019-01-21
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore 2matto
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better Brightspace",
    "version": "0.0.0.6",
    "description": "Changes the Brightspace homepage to focus on current courses.",
    "icons": {
        "128": "BetterBrightSpace-128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.brightspace.com\/*"
            ],
            "css": [
                "content.css"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.brightspace.com\/d2l\/home"
            ],
            "js": [
                "home-content.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.brightspace.com\/d2l\/le\/content\/*\/Home"
            ],
            "js": [
                "course-content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "BetterBrightSpace-128.png"
    },
    "manifest_version": 2
}