Smartschool Reloaded
A full rewrite for Smartschool's lay-out
什麼是Smartschool Reloaded?
Smartschool Reloaded是由wxnnvs開發的Chrome擴展程式,該擴展的主要功能是“A full rewrite for Smartschool's lay-out”。
擴展截圖
下載Smartschool Reloaded擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | nanaabongebceikjamboicickejmimck |
| 官方網址 | 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"
]
}
]
} | |