Battery Status
Display battery level, charging or discharging status.
Battery Status क्या है?
Battery Status https://guokai.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display battery level, charging or discharging status."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Battery Status एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |