Smartschool Reloaded

A full rewrite for Smartschool's lay-out

What is Smartschool Reloaded?

Smartschool Reloaded is a Chrome extension developed by wxnnvs, and its main feature is "A full rewrite for Smartschool's lay-out".

Extension Screenshots

screenshot
screenshot
screenshot

Download Smartschool Reloaded Extension CRX File

Download Smartschool Reloaded extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Smartschool Reloaded Smartschool Reloaded
ID nanaabongebceikjamboicickejmimck
Official URL https://chromewebstore.google.com/detail/smartschool-reloaded/nanaabongebceikjamboicickejmimck
Description A full rewrite for Smartschool's lay-out
File Size 15.28 KB
Installation Count 45
Current Version 0.1.4
Last Updated 2023-10-15
Publish Date 2023-10-14
Developer wxnnvs
Email [email protected]
Payment Type free
Extension Website https://github.com/wxnnvs/SMSC-Reloaded
Help Page URL https://github.com/wxnnvs/SMSC-Reloaded/issues/new/choose
Supported Languages 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"
            ]
        }
    ]
}