Night Mode Bible

Make Bible.com dark for easier reading at night

Night Mode Bibleとは何ですか?

Night Mode BibleはJosiah Nunemakerによって開発されたChromeの拡張機能で、その主な機能は「Make Bible.com dark for easier reading at night」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Night Mode Bible拡張機能のCRXファイルをダウンロード

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

拡張機能の基本情報

名前 Night Mode Bible Night Mode Bible
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
Eメール [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\/*"
            ]
        }
    ]
}