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".
Снимки экрана расширения
Скачать файл 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 :) Основная информация о расширении
| Название | |
| 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\/*"
]
}
]
} | |