Springboard Dark-Theme (beta)
A dark theme for students to use on the springboard.com website
Springboard Dark-Theme (beta) là gì?
Springboard Dark-Theme (beta) là một tiện ích mở rộng Chrome được phát triển bởi Jarett Sisk, và tính năng chính của nó là "A dark theme for students to use on the springboard.com website".
Ả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 Springboard Dark-Theme (beta)
Tải xuống các tệp mở rộng Springboard Dark-Theme (beta) 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 gives you a dark theme at the click of a button! I built this extension for springboard students alike who may have a hard time staring at a brightly styled website for extended periods. This extension dynamically injects CSS styling into the springboard website to bring you some nice dark styling that is sure to reduce strain on your eyes and overall offer a better viewing experience for dark theme fans.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Springboard Dark-Theme (beta) |
ID | momeonbdhfiamhnpjmgdmnkommfdlfhh |
URL Chính Thức | https://chromewebstore.google.com/detail/springboard-dark-theme-be/momeonbdhfiamhnpjmgdmnkommfdlfhh |
Mô tả | A dark theme for students to use on the springboard.com website |
Kích Thước Tệp | 335 KB |
Số Lần Cài Đặt | 24 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2021-09-15 |
Ngày Phát Hành | 2021-09-14 |
Nhà Phát Triển | Jarett Sisk |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Springboard Dark-Theme (beta)", "description": "A dark theme for students to use on the springboard.com website", "action": { "default_title": "Springboard Dark-Theme", "default_popup": "popup.html" }, "icons": { "32": "icon.png", "128": "icon.png" }, "version": "1.0", "content_scripts": [ { "matches": [ "https:\/\/www.springboard.com\/*", "http:\/\/curric.rithmschool.com\/*", "https:\/\/curric.rithmschool.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "scripting", "activeTab" ], "host_permissions": [ "https:\/\/www.springboard.com\/*", "http:\/\/curric.rithmschool.com\/*", "https:\/\/curric.rithmschool.com\/*" ], "web_accessible_resources": [ { "resources": [ "dark-theme.css" ], "matches": [ "https:\/\/www.springboard.com\/*", "http:\/\/curric.rithmschool.com\/*", "https:\/\/curric.rithmschool.com\/*" ] } ] } |