Night Mode Bible

Make Bible.com dark for easier reading at night

Night Mode Bible là gì?

Night Mode Bible là một tiện ích mở rộng Chrome được phát triển bởi Josiah Nunemaker, và tính năng chính của nó là "Make Bible.com dark for easier reading at night".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Night Mode Bible

Tải xuống các tệp mở rộng Night Mode Bible dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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 :)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Night Mode Bible Night Mode Bible
ID ebiieffikaglhelcnogmmijmlejdhngk
URL Chính Thức https://chromewebstore.google.com/detail/night-mode-bible/ebiieffikaglhelcnogmmijmlejdhngk
Mô tả Make Bible.com dark for easier reading at night
Kích Thước Tệp 22.91 KB
Số Lần Cài Đặt 3,819
Phiên Bản Hiện Tại 3.0.2
Cập Nhật Lần Cuối 2024-01-09
Ngày Phát Hành 2020-01-26
Đánh Giá 4.69/5 Tổng số 26 Đánh Giá
Nhà Phát Triển Josiah Nunemaker
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}