Smartschool Reloaded
A full rewrite for Smartschool's lay-out
Wat is Smartschool Reloaded?
Smartschool Reloaded is een Chrome-extensie ontwikkeld door wxnnvs, en de belangrijkste functie is "A full rewrite for Smartschool's lay-out".
Extensie Screenshots
Download het CRX-bestand van de extensie Smartschool Reloaded
Download Smartschool Reloaded-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Smartschool Reloaded |
ID | nanaabongebceikjamboicickejmimck |
Officiële URL | https://chromewebstore.google.com/detail/smartschool-reloaded/nanaabongebceikjamboicickejmimck |
Beschrijving | A full rewrite for Smartschool's lay-out |
Bestandsgrootte | 15.28 KB |
Aantal Installaties | 45 |
Huidige Versie | 0.1.4 |
Laatst Bijgewerkt | 2023-10-15 |
Publicatiedatum | 2023-10-14 |
Ontwikkelaar | wxnnvs |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/wxnnvs/SMSC-Reloaded |
Help Pagina-URL | https://github.com/wxnnvs/SMSC-Reloaded/issues/new/choose |
Ondersteunde Talen | 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" ] } ] } |