Night Mode Bible

Make Bible.com dark for easier reading at night

¿Qué es Night Mode Bible?

Night Mode Bible es una extensión de Chrome desarrollada por Josiah Nunemaker, y su función principal es "Make Bible.com dark for easier reading at night".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Night Mode Bible

Descarga archivos de extensión Night Mode Bible en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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 :)                    

Información Básica de la Extensión

Nombre Night Mode Bible Night Mode Bible
ID ebiieffikaglhelcnogmmijmlejdhngk
URL Oficial https://chromewebstore.google.com/detail/night-mode-bible/ebiieffikaglhelcnogmmijmlejdhngk
Descripción Make Bible.com dark for easier reading at night
Tamaño del Archivo 22.91 KB
Cantidad de Instalaciones 3,819
Versión Actual 3.0.2
Última Actualización 2024-01-09
Fecha de Publicación 2020-01-26
Calificación 4.69/5 Total de 26 Calificaciones
Desarrollador Josiah Nunemaker
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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\/*"
            ]
        }
    ]
}