Storage Monitor
Monitor system capacity
什么是Storage Monitor?
Storage Monitor是由benzihomo开发的Chrome扩展程序,该扩展的主要功能是“Monitor system capacity”。
扩展截图
下载Storage Monitor扩展crx文件
下载Storage Monitor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Press "Alt+Shift+W" to display your system capacity details. 扩展基本信息
| 名称 | |
| ID | albkjjcpjnleafcacecgjoaddehbojko |
| 官方URL | https://chrome.google.com/webstore/detail/storage-monitor/albkjjcpjnleafcacecgjoaddehbojko |
| 简介 | Monitor system capacity |
| 文件大小 | 17.14 KB |
| 安装次数 | 103 |
| 当前版本 | 0.1 |
| 更新时间 | 2014-06-19 |
| 上架时间 | 2014-06-19 |
| 评分 | 1.00/5 共1次评分 |
| 开发者 | benzihomo |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Storage Monitor",
"description": "Monitor system capacity",
"version": "0.1",
"manifest_version": 2,
"permissions": [
"system.storage",
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"extension.css"
],
"js": [
"extension.js"
]
}
],
"commands": {
"toggle-storage-monitor": {
"suggested_key": {
"default": "Alt+Shift+M"
},
"description": "Toggle Storage Monitor"
}
}
} | |