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ファイルをダウンロード

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 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
Eメール [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"
    }
}