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