Battery Status
Display battery level, charging or discharging status.
Battery Statusคืออะไร?
Battery Status เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://guokai.dev และคุณลักษณะหลักของมันคือ "Display battery level, charging or discharging status."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Battery Status
ดาวน์โหลดไฟล์ส่วนขยาย Battery Status ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Display battery status on the extension icon and popup page, and support custom notifications. Updates: ● Version 3.0.0 (2024/02/23): upgrade to manifest v3, and requires Chrome version >= 118. ● Version 2.0.2 (2023/02/08): support playing sound with notifications! ● Version 2.0.0 (2020/12/20): support custom notifications! State of the extension icon: ● Green color: power level > 15%, Red color: power level <= 15% ● ⚡️flag: charging or fully charged, without ⚡️flag: not charged ● The battery icon itself reflects the overall power level ● Hover over the icon to display battery percentage The popup page displays detailed information, and you can set whether to show battery percentage on the extension icon.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Battery Status |
ID | lncamcnihkpmnbpioiooedpmmpaaohnb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/battery-status/lncamcnihkpmnbpioiooedpmmpaaohnb |
คำอธิบาย | Display battery level, charging or discharging status. |
ขนาดไฟล์ | 146 KB |
จำนวนการติดตั้ง | 6,421 |
เวอร์ชันปัจจุบัน | 3.0.1 |
อัปเดตครั้งล่าสุด | 2024-02-27 |
วันที่เผยแพร่ | 2020-02-07 |
คะแนน | 4.50/5 รวมทั้งหมด 26 คะแนน |
ผู้พัฒนา | https://guokai.dev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://guokai.dev/privacy |
ภาษาที่รองรับ | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "3.0.1", "author": "Guokai Han", "manifest_version": 3, "minimum_chrome_version": "118", "description": "__MSG_extDescription__", "default_locale": "en", "offline_enabled": true, "permissions": [ "alarms", "background", "offscreen", "storage" ], "optional_permissions": [ "notifications" ], "icons": { "16": "icon\/16.png", "48": "icon\/48.png", "128": "icon\/128.png" }, "background": { "service_worker": "background.js" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "action": { "default_popup": "popup.html" } } |