Smartschool Reloaded
A full rewrite for Smartschool's lay-out
Co to jest Smartschool Reloaded?
Smartschool Reloaded to rozszerzenie Chrome opracowane przez wxnnvs, a jego główną funkcją jest „A full rewrite for Smartschool's lay-out”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Smartschool Reloaded
Pobierz pliki rozszerzeń Smartschool Reloaded w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | nanaabongebceikjamboicickejmimck |
| Oficjalny URL | https://chromewebstore.google.com/detail/smartschool-reloaded/nanaabongebceikjamboicickejmimck |
| Opis | A full rewrite for Smartschool's lay-out |
| Rozmiar pliku | 15.28 KB |
| Liczba instalacji | 45 |
| Aktualna Wersja | 0.1.4 |
| Ostatnia Aktualizacja | 2023-10-15 |
| Data Publikacji | 2023-10-14 |
| Deweloper | wxnnvs |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/wxnnvs/SMSC-Reloaded |
| Adres URL Strony Pomocy | https://github.com/wxnnvs/SMSC-Reloaded/issues/new/choose |
| Obsługiwane Języki | 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"
]
}
]
} | |