Smartschool Reloaded

A full rewrite for Smartschool's lay-out

Apa itu Smartschool Reloaded?

Smartschool Reloaded adalah ekstensi Chrome yang dikembangkan oleh wxnnvs, dan fitur utamanya adalah "A full rewrite for Smartschool's lay-out".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Smartschool Reloaded

Unduh file ekstensi Smartschool Reloaded dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Smartschool Reloaded Smartschool Reloaded
ID nanaabongebceikjamboicickejmimck
URL Resmi https://chromewebstore.google.com/detail/smartschool-reloaded/nanaabongebceikjamboicickejmimck
Deskripsi A full rewrite for Smartschool's lay-out
Ukuran File 15.28 KB
Jumlah Instalasi 45
Versi Saat Ini 0.1.4
Terakhir Diperbarui 2023-10-15
Tanggal Publikasi 2023-10-14
Pengembang wxnnvs
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/wxnnvs/SMSC-Reloaded
URL Halaman Bantuan https://github.com/wxnnvs/SMSC-Reloaded/issues/new/choose
Bahasa yang Didukung 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"
            ]
        }
    ]
}