Battery Status

Display battery level, charging or discharging status.

Battery Status란 무엇입니까?

Battery Status은(는) https://guokai.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display battery level, charging or discharging status."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Battery Status 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    }
}