Springboard Dark-Theme (beta)
A dark theme for students to use on the springboard.com website
Qu'est-ce que Springboard Dark-Theme (beta) ?
Springboard Dark-Theme (beta) est une extension Chrome développée par Jarett Sisk, et sa fonction principale est "A dark theme for students to use on the springboard.com website".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Springboard Dark-Theme (beta)
Téléchargez les fichiers d'extension Springboard Dark-Theme (beta) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Springboard Dark-Theme (beta) |
ID | momeonbdhfiamhnpjmgdmnkommfdlfhh |
URL Officiel | https://chromewebstore.google.com/detail/springboard-dark-theme-be/momeonbdhfiamhnpjmgdmnkommfdlfhh |
Description | A dark theme for students to use on the springboard.com website |
Taille du Fichier | 335 KB |
Nombre d'Installations | 24 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2021-09-15 |
Date de Publication | 2021-09-14 |
Développeur | Jarett Sisk |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } ] } |