Night Mode Bible
Make Bible.com dark for easier reading at night
Vad är Night Mode Bible?
Night Mode Bible är en Chrome-tillägg utvecklad av Josiah Nunemaker, och dess huvudfunktion är "Make Bible.com dark for easier reading at night".
Tilläggsskärmbilder
Ladda ner Night Mode Bible-förlängningens CRX-fil
Ladda ner Night Mode Bible-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 :) Grundläggande Information om Tillägg
| Namn | |
| ID | ebiieffikaglhelcnogmmijmlejdhngk |
| Officiell webbadress | https://chromewebstore.google.com/detail/night-mode-bible/ebiieffikaglhelcnogmmijmlejdhngk |
| Beskrivning | Make Bible.com dark for easier reading at night |
| Filstorlek | 22.91 KB |
| Antal Installationer | 3,819 |
| Aktuell Version | 3.0.2 |
| Senast Uppdaterad | 2024-01-09 |
| Publiceringsdatum | 2020-01-26 |
| Betyg | 4.69/5 Totalt 26 Betyg |
| Utvecklare | Josiah Nunemaker |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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\/*"
]
}
]
} | |