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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A dark theme for students to use on the springboard.com website"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Springboard Dark-Theme (beta) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
            ]
        }
    ]
}