Battery Status

Display battery level, charging or discharging status.

What is Battery Status?

Battery Status is a Chrome extension developed by https://guokai.dev, and its main feature is "Display battery level, charging or discharging status.".

Extension Screenshots

screenshot
screenshot

Download Battery Status Extension CRX File

Download Battery Status extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Battery Status Battery Status
ID lncamcnihkpmnbpioiooedpmmpaaohnb
Official URL https://chromewebstore.google.com/detail/battery-status/lncamcnihkpmnbpioiooedpmmpaaohnb
Description Display battery level, charging or discharging status.
File Size 146 KB
Installation Count 6,421
Current Version 3.0.1
Last Updated 2024-02-27
Publish Date 2020-02-07
Rating 4.50/5 Total 26 Ratings
Developer https://guokai.dev
Email [email protected]
Payment Type free
Privacy Policy Page URL https://guokai.dev/privacy
Supported Languages 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"
    }
}