Night Mode Bible
Make Bible.com dark for easier reading at night
Co je Night Mode Bible?
Night Mode Bible je rozšíření Chrome vyvinuté Josiah Nunemaker, a jeho hlavní funkcí je „Make Bible.com dark for easier reading at night“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Night Mode Bible
Stáhněte si soubory rozšíření Night Mode Bible ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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 :)
Základní Informace o Rozšíření
Název | Night Mode Bible |
ID | ebiieffikaglhelcnogmmijmlejdhngk |
Oficiální URL | https://chromewebstore.google.com/detail/night-mode-bible/ebiieffikaglhelcnogmmijmlejdhngk |
Popis | Make Bible.com dark for easier reading at night |
Velikost souboru | 22.91 KB |
Počet instalací | 3,819 |
Aktuální Verze | 3.0.2 |
Poslední Aktualizace | 2024-01-09 |
Datum Vydání | 2020-01-26 |
Hodnocení | 4.69/5 Celkem 26 Hodnocení |
Vývojář | Josiah Nunemaker |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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\/*" ] } ] } |