Battery Status Icon
Shows the battery status of the current device.
什么是Battery Status Icon?
Battery Status Icon是由galah92开发的Chrome扩展程序,该扩展的主要功能是“Shows the battery status of the current device.”。
下载Battery Status Icon扩展crx文件
下载Battery Status Icon扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Display the battery status of the current device in the toolbar.
The best solution if you want to work in full-screen mode. 扩展基本信息
| 名称 | |
| ID | jcnnkfkniafjkanfjcoijpkmaeadcjpo |
| 官方URL | https://chromewebstore.google.com/detail/battery-status-icon/jcnnkfkniafjkanfjcoijpkmaeadcjpo |
| 简介 | Shows the battery status of the current device. |
| 文件大小 | 4.2 KB |
| 安装次数 | 211 |
| 当前版本 | 1.0 |
| 更新时间 | 2016-04-13 |
| 上架时间 | 2016-04-13 |
| 评分 | 4.25/5 共12次评分 |
| 开发者 | galah92 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Battery Status Icon",
"description": "Shows the battery status of the current device.",
"version": "1.0",
"author": "gala92",
"browser_action": {
"default_title": "Loading..."
},
"background": {
"scripts": [
"background.js"
],
"presistent": false
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"permissions": [
"storage"
]
} | |