Night Mode Bible

Make Bible.com dark for easier reading at night

Night Mode Bible란 무엇입니까?

Night Mode Bible은(는) Josiah Nunemaker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make Bible.com dark for easier reading at night"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Night Mode Bible 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Tired of staring at the bright white Bible.com? Night Mode Bible provides a dark theme that gives your eyes a break, and makes night reading easier on your eyes. 



Have a bug to report? Want to contribute? Dark Mode Bible is open source and available at https://github.com/JosNun/night-mode-bible. All help is welcome :)                    

확장 프로그램 기본 정보

이름 Night Mode Bible Night Mode Bible
ID ebiieffikaglhelcnogmmijmlejdhngk
공식 URL https://chromewebstore.google.com/detail/night-mode-bible/ebiieffikaglhelcnogmmijmlejdhngk
설명 Make Bible.com dark for easier reading at night
파일 크기 22.91 KB
설치 횟수 3,819
현재 버전 3.0.2
최근 업데이트 2024-01-09
출시 날짜 2020-01-26
평점 4.69/5 총 26 개의 평점
개발자 Josiah Nunemaker
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Night Mode Bible",
    "short_name": "Night Bible",
    "description": "Make Bible.com dark for easier reading at night",
    "version": "3.0.2",
    "author": "Josiah Nunemaker",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "inject.js"
            ],
            "matches": [
                "*:\/\/*.bible.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "32": "assets\/icons\/icon32.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent"
    ],
    "host_permissions": [
        "*:\/\/*.bible.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "styles.css"
            ],
            "matches": [
                "*:\/\/*.bible.com\/*"
            ]
        }
    ]
}