Night Mode Bible
Make Bible.com dark for easier reading at night
Cos'è Night Mode Bible?
Night Mode Bible è un'estensione di Chrome sviluppata da Josiah Nunemaker, e la sua funzione principale è "Make Bible.com dark for easier reading at night".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Night Mode Bible
Scarica i file di estensione Night Mode Bible in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 :) Informazioni di Base sull'Estensione
| Nome | |
| ID | ebiieffikaglhelcnogmmijmlejdhngk |
| URL Ufficiale | https://chromewebstore.google.com/detail/night-mode-bible/ebiieffikaglhelcnogmmijmlejdhngk |
| Descrizione | Make Bible.com dark for easier reading at night |
| Dimensione del File | 22.91 KB |
| Conteggio Installazioni | 3,819 |
| Versione Corrente | 3.0.2 |
| Ultimo Aggiornamento | 2024-01-09 |
| Data di Pubblicazione | 2020-01-26 |
| Valutazione | 4.69/5 Totale 26 Valutazioni |
| Sviluppatore | Josiah Nunemaker |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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\/*"
]
}
]
} | |