Springboard Dark-Theme (beta)

A dark theme for students to use on the springboard.com website

Τι είναι το Springboard Dark-Theme (beta);

Το Springboard Dark-Theme (beta) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jarett Sisk, και η κύρια λειτουργία του είναι "A dark theme for students to use on the springboard.com website".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Springboard Dark-Theme (beta)

Λήψη αρχείων επέκτασης 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) Springboard Dark-Theme (beta)
ID momeonbdhfiamhnpjmgdmnkommfdlfhh
Επίσημο URL 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\/*"
            ]
        }
    ]
}