Smartschool Reloaded
A full rewrite for Smartschool's lay-out
Vad är Smartschool Reloaded?
Smartschool Reloaded är en Chrome-tillägg utvecklad av wxnnvs, och dess huvudfunktion är "A full rewrite for Smartschool's lay-out".
Tilläggsskärmbilder
Ladda ner Smartschool Reloaded-förlängningens CRX-fil
Ladda ner Smartschool Reloaded-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
                        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                     Grundläggande Information om Tillägg
| Namn |   |  
| ID | nanaabongebceikjamboicickejmimck | 
| Officiell webbadress | https://chromewebstore.google.com/detail/smartschool-reloaded/nanaabongebceikjamboicickejmimck | 
| Beskrivning | A full rewrite for Smartschool's lay-out | 
| Filstorlek | 15.28 KB | 
| Antal Installationer | 45 | 
| Aktuell Version | 0.1.4 | 
| Senast Uppdaterad | 2023-10-15 | 
| Publiceringsdatum | 2023-10-14 | 
| Utvecklare | wxnnvs | 
| E-post | [email protected] | 
| Betalningssätt | free | 
| Tilläggswebbplats | https://github.com/wxnnvs/SMSC-Reloaded | 
| Hjälpsida URL | https://github.com/wxnnvs/SMSC-Reloaded/issues/new/choose | 
| Stödda Språk | 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"
            ]
        }
    ]
}  |  |