Smartschool Reloaded
A full rewrite for Smartschool's lay-out
Qu'est-ce que Smartschool Reloaded ?
Smartschool Reloaded est une extension Chrome développée par wxnnvs, et sa fonction principale est "A full rewrite for Smartschool's lay-out".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Smartschool Reloaded
Téléchargez les fichiers d'extension Smartschool Reloaded au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Smartschool Reloaded |
ID | nanaabongebceikjamboicickejmimck |
URL Officiel | https://chromewebstore.google.com/detail/smartschool-reloaded/nanaabongebceikjamboicickejmimck |
Description | A full rewrite for Smartschool's lay-out |
Taille du Fichier | 15.28 KB |
Nombre d'Installations | 45 |
Version Actuelle | 0.1.4 |
Dernière Mise à Jour | 2023-10-15 |
Date de Publication | 2023-10-14 |
Développeur | wxnnvs |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/wxnnvs/SMSC-Reloaded |
URL de la Page d'Aide | https://github.com/wxnnvs/SMSC-Reloaded/issues/new/choose |
Langues Prises en Charge | 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" ] } ] } |