Smartschool Reloaded
A full rewrite for Smartschool's lay-out
Hvad er Smartschool Reloaded?
Smartschool Reloaded er en Chrome-udvidelse udviklet af wxnnvs, og dens hovedfunktion er "A full rewrite for Smartschool's lay-out".
Udvidelsesskærmbilleder
Download Smartschool Reloaded-udvidelses-CRX-fil
Download Smartschool Reloaded-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 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æggende oplysninger om udvidelsen
Navn | Smartschool Reloaded |
ID | nanaabongebceikjamboicickejmimck |
Officiel URL | https://chromewebstore.google.com/detail/smartschool-reloaded/nanaabongebceikjamboicickejmimck |
Beskrivelse | A full rewrite for Smartschool's lay-out |
Filstørrelse | 15.28 KB |
Antal Installationer | 45 |
Nuværende Version | 0.1.4 |
Senest Opdateret | 2023-10-15 |
Udgivelsesdato | 2023-10-14 |
Udvikler | wxnnvs |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/wxnnvs/SMSC-Reloaded |
Hjælpeside-URL | https://github.com/wxnnvs/SMSC-Reloaded/issues/new/choose |
Understøttede Sprog | 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" ] } ] } |