Battery Status
Display battery level, charging or discharging status.
Qu'est-ce que Battery Status ?
Battery Status est une extension Chrome développée par https://guokai.dev, et sa fonction principale est "Display battery level, charging or discharging status.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Battery Status
Téléchargez les fichiers d'extension Battery Status au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Battery Status |
ID | lncamcnihkpmnbpioiooedpmmpaaohnb |
URL Officiel | https://chromewebstore.google.com/detail/battery-status/lncamcnihkpmnbpioiooedpmmpaaohnb |
Description | Display battery level, charging or discharging status. |
Taille du Fichier | 146 KB |
Nombre d'Installations | 6,421 |
Version Actuelle | 3.0.1 |
Dernière Mise à Jour | 2024-02-27 |
Date de Publication | 2020-02-07 |
Évaluation | 4.50/5 Total 26 Évaluations |
Développeur | https://guokai.dev |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://guokai.dev/privacy |
Langues Prises en Charge | 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" } } |