Smartschool Reloaded

A full rewrite for Smartschool's lay-out

Smartschool Reloadedคืออะไร?

Smartschool Reloaded เป็นส่วนขยายของ Chrome ที่พัฒนาโดย wxnnvs และคุณลักษณะหลักของมันคือ "A full rewrite for Smartschool's lay-out"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Smartschool Reloaded

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}