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 :)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | 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 |
อีเมล | [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\/*" ] } ] } |