Night Mode Bible

Make Bible.com dark for easier reading at night

Τι είναι το Night Mode Bible;

Το Night Mode Bible είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Josiah Nunemaker, και η κύρια λειτουργία του είναι "Make Bible.com dark for easier reading at night".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Night Mode Bible

Λήψη αρχείων επέκτασης Night Mode Bible σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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