Springboard Dark-Theme (beta)
A dark theme for students to use on the springboard.com website
什麼是Springboard Dark-Theme (beta)?
Springboard Dark-Theme (beta)是由Jarett Sisk開發的Chrome擴展程式,該擴展的主要功能是“A dark theme for students to use on the springboard.com website”。
擴展截圖
下載Springboard Dark-Theme (beta)擴展crx文件
下載Springboard Dark-Theme (beta)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Springboard Dark-Theme (beta) |
ID | momeonbdhfiamhnpjmgdmnkommfdlfhh |
官方網址 | https://chromewebstore.google.com/detail/springboard-dark-theme-be/momeonbdhfiamhnpjmgdmnkommfdlfhh |
簡介 | A dark theme for students to use on the springboard.com website |
檔案大小 | 335 KB |
安裝次數 | 24 |
目前版本 | 1.0 |
更新時間 | 2021-09-15 |
上架時間 | 2021-09-14 |
開發者 | Jarett Sisk |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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\/*" ] } ] } |