Night Mode Bible
Make Bible.com dark for easier reading at night
O que é Night Mode Bible?
Night Mode Bible é uma extensão do Chrome desenvolvida por Josiah Nunemaker, e sua principal característica é "Make Bible.com dark for easier reading at night".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Night Mode Bible
Baixe arquivos de extensão Night Mode Bible no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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 :)
Informações Básicas da Extensão
Nome | Night Mode Bible |
ID | ebiieffikaglhelcnogmmijmlejdhngk |
URL Oficial | https://chromewebstore.google.com/detail/night-mode-bible/ebiieffikaglhelcnogmmijmlejdhngk |
Descrição | Make Bible.com dark for easier reading at night |
Tamanho do Arquivo | 22.91 KB |
Contagem de Instalações | 3,819 |
Versão Atual | 3.0.2 |
Última Atualização | 2024-01-09 |
Data de Publicação | 2020-01-26 |
Classificação | 4.69/5 Total de 26 Avaliações |
Desenvolvedor | Josiah Nunemaker |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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\/*" ] } ] } |