Night Mode Bible

Make Bible.com dark for easier reading at night

Qu'est-ce que Night Mode Bible ?

Night Mode Bible est une extension Chrome développée par Josiah Nunemaker, et sa fonction principale est "Make Bible.com dark for easier reading at night".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Night Mode Bible

Téléchargez les fichiers d'extension Night Mode Bible au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Night Mode Bible Night Mode Bible
ID ebiieffikaglhelcnogmmijmlejdhngk
URL Officiel https://chromewebstore.google.com/detail/night-mode-bible/ebiieffikaglhelcnogmmijmlejdhngk
Description Make Bible.com dark for easier reading at night
Taille du Fichier 22.91 KB
Nombre d'Installations 3,819
Version Actuelle 3.0.2
Dernière Mise à Jour 2024-01-09
Date de Publication 2020-01-26
Évaluation 4.69/5 Total 26 Évaluations
Développeur Josiah Nunemaker
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}