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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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