Smartschool Reloaded
A full rewrite for Smartschool's lay-out
ما هو Smartschool Reloaded؟
Smartschool Reloaded هو إضافة Chrome تم تطويرها بواسطة wxnnvs، والميزة الرئيسية لها هي "A full rewrite for Smartschool's lay-out".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Smartschool Reloaded
قم بتنزيل ملفات الامتداد Smartschool Reloaded بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 معلومات أساسية عن التمديد
| الاسم | |
| 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 |
| عنوان صفحة المساعدة | 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"
]
}
]
} | |