Battery Status

Display battery level, charging or discharging status.

Battery Status là gì?

Battery Status là một tiện ích mở rộng Chrome được phát triển bởi https://guokai.dev, và tính năng chính của nó là "Display battery level, charging or discharging status.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Battery Status

Tải xuống các tệp mở rộng Battery Status dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Battery Status Battery Status
ID lncamcnihkpmnbpioiooedpmmpaaohnb
URL Chính Thức https://chromewebstore.google.com/detail/battery-status/lncamcnihkpmnbpioiooedpmmpaaohnb
Mô tả Display battery level, charging or discharging status.
Kích Thước Tệp 146 KB
Số Lần Cài Đặt 6,421
Phiên Bản Hiện Tại 3.0.1
Cập Nhật Lần Cuối 2024-02-27
Ngày Phát Hành 2020-02-07
Đánh Giá 4.50/5 Tổng số 26 Đánh Giá
Nhà Phát Triển https://guokai.dev
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://guokai.dev/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}