Smartschool Reloaded

A full rewrite for Smartschool's lay-out

Was ist Smartschool Reloaded?

Smartschool Reloaded ist eine Chrome-Erweiterung, die von wxnnvs entwickelt wurde, und ihr Hauptmerkmal ist "A full rewrite for Smartschool's lay-out".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Smartschool Reloaded-Erweiterungs-CRX-Datei herunterladen

Laden Sie Smartschool Reloaded-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Smartschool Reloaded Smartschool Reloaded
ID nanaabongebceikjamboicickejmimck
Offizielle URL https://chromewebstore.google.com/detail/smartschool-reloaded/nanaabongebceikjamboicickejmimck
Beschreibung A full rewrite for Smartschool's lay-out
Dateigröße 15.28 KB
Installationsanzahl 45
Aktuelle Version 0.1.4
Letztes Update 2023-10-15
Veröffentlichungsdatum 2023-10-14
Entwickler wxnnvs
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/wxnnvs/SMSC-Reloaded
Hilfeseite URL https://github.com/wxnnvs/SMSC-Reloaded/issues/new/choose
Unterstützte Sprachen 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"
            ]
        }
    ]
}