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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A dark theme for students to use on the springboard.com website"입니다.

확장 프로그램 스크린샷

screenshot

Springboard Dark-Theme (beta) 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*"
            ]
        }
    ]
}