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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}