Smartschool Reloaded
A full rewrite for Smartschool's lay-out
Smartschool Reloaded là gì?
Smartschool Reloaded là một tiện ích mở rộng Chrome được phát triển bởi wxnnvs, và tính năng chính của nó là "A full rewrite for Smartschool's lay-out".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Smartschool Reloaded
Tải xuống các tệp mở rộng Smartschool Reloaded dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Smartschool Reloaded |
ID | nanaabongebceikjamboicickejmimck |
URL Chính Thức | https://chromewebstore.google.com/detail/smartschool-reloaded/nanaabongebceikjamboicickejmimck |
Mô tả | A full rewrite for Smartschool's lay-out |
Kích Thước Tệp | 15.28 KB |
Số Lần Cài Đặt | 45 |
Phiên Bản Hiện Tại | 0.1.4 |
Cập Nhật Lần Cuối | 2023-10-15 |
Ngày Phát Hành | 2023-10-14 |
Nhà Phát Triển | wxnnvs |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/wxnnvs/SMSC-Reloaded |
URL Trang Trợ Giúp | https://github.com/wxnnvs/SMSC-Reloaded/issues/new/choose |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |