Smartschool Reloaded

A full rewrite for Smartschool's lay-out

什么是Smartschool Reloaded?

Smartschool Reloaded是由wxnnvs开发的Chrome扩展程序,该扩展的主要功能是“A full rewrite for Smartschool's lay-out”。

扩展截图

screenshot
screenshot
screenshot

下载Smartschool Reloaded扩展crx文件

下载Smartschool Reloaded扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Smartschool Reloaded Smartschool Reloaded
ID nanaabongebceikjamboicickejmimck
官方URL https://chromewebstore.google.com/detail/smartschool-reloaded/nanaabongebceikjamboicickejmimck
简介 A full rewrite for Smartschool's lay-out
文件大小 15.28 KB
安装次数 45
当前版本 0.1.4
更新时间 2023-10-15
上架时间 2023-10-14
开发者 wxnnvs
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/wxnnvs/SMSC-Reloaded
帮助页面URL https://github.com/wxnnvs/SMSC-Reloaded/issues/new/choose
支持的语言 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"
            ]
        }
    ]
}