Smartschool Reloaded

A full rewrite for Smartschool's lay-out

Cos'è Smartschool Reloaded?

Smartschool Reloaded è un'estensione di Chrome sviluppata da wxnnvs, e la sua funzione principale è "A full rewrite for Smartschool's lay-out".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Smartschool Reloaded

Scarica i file di estensione Smartschool Reloaded 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 extension injects a stylesheet element to the bottom of the page using javascript, replacing a lot of Smartschool's original CSS. This allows one to use smartschool in darkmode to please the eyes :)

Thanks to @ToxicMushroom for the original project                    

Informazioni di Base sull'Estensione

Nome Smartschool Reloaded Smartschool Reloaded
ID nanaabongebceikjamboicickejmimck
URL Ufficiale https://chromewebstore.google.com/detail/smartschool-reloaded/nanaabongebceikjamboicickejmimck
Descrizione A full rewrite for Smartschool's lay-out
Dimensione del File 15.28 KB
Conteggio Installazioni 45
Versione Corrente 0.1.4
Ultimo Aggiornamento 2023-10-15
Data di Pubblicazione 2023-10-14
Sviluppatore wxnnvs
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/wxnnvs/SMSC-Reloaded
URL della Pagina di Aiuto https://github.com/wxnnvs/SMSC-Reloaded/issues/new/choose
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Smartschool Reloaded",
    "description": "A full rewrite for Smartschool's lay-out",
    "version": "0.1.4",
    "action": {
        "default_popup": "index.html",
        "default_icon": "icon.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "style.css"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "js": [
                "inject.js"
            ],
            "matches": [
                "https:\/\/*.smartschool.be\/*"
            ],
            "runAt": [
                "document_start"
            ]
        }
    ]
}