Springboard Dark-Theme (beta)
A dark theme for students to use on the springboard.com website
Was ist Springboard Dark-Theme (beta)?
Springboard Dark-Theme (beta) ist eine Chrome-Erweiterung, die von Jarett Sisk entwickelt wurde, und ihr Hauptmerkmal ist "A dark theme for students to use on the springboard.com website".
Erweiterungsscreenshots
Springboard Dark-Theme (beta)-Erweiterungs-CRX-Datei herunterladen
Laden Sie Springboard Dark-Theme (beta)-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Springboard Dark-Theme (beta) |
ID | momeonbdhfiamhnpjmgdmnkommfdlfhh |
Offizielle URL | https://chromewebstore.google.com/detail/springboard-dark-theme-be/momeonbdhfiamhnpjmgdmnkommfdlfhh |
Beschreibung | A dark theme for students to use on the springboard.com website |
Dateigröße | 335 KB |
Installationsanzahl | 24 |
Aktuelle Version | 1.0 |
Letztes Update | 2021-09-15 |
Veröffentlichungsdatum | 2021-09-14 |
Entwickler | Jarett Sisk |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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\/*" ] } ] } |