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
Eメール [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"
            ]
        }
    ]
}