Battery Status
Display battery level, charging or discharging status.
什麼是Battery Status?
Battery Status是由https://guokai.dev開發的Chrome擴展程式,該擴展的主要功能是“Display battery level, charging or discharging status.”。
擴展截圖
下載Battery Status擴展crx文件
下載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 |
官方網址 | 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" } } |