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 с друзьями, чтобы легко установить расширения 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 |
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" ] } ] } |