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. 扩展基本信息
| 名称 | |
| 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"
}
} | |