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
官方網址 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\/*"
            ]
        }
    ]
}