System Monitor
Monitor system status like CPU, memory, battery
什么是System Monitor?
System Monitor是由Rongjian Zhang开发的Chrome扩展程序,该扩展的主要功能是“Monitor system status like CPU, memory, battery”。
扩展截图
下载System Monitor扩展crx文件
下载System Monitor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Source code: https://github.com/pd4d10/system-monitor
扩展基本信息
名称 | System Monitor |
ID | ecmlflnkenbdjfocclindonmigndecla |
官方URL | https://chromewebstore.google.com/detail/system-monitor/ecmlflnkenbdjfocclindonmigndecla |
简介 | Monitor system status like CPU, memory, battery |
文件大小 | 94.98 KB |
安装次数 | 12,890 |
当前版本 | 1.5.1 |
更新时间 | 2020-02-01 |
上架时间 | 2020-02-01 |
评分 | 4.57/5 共49次评分 |
开发者 | Rongjian Zhang |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/pd4d10/system-monitor |
帮助页面URL | https://github.com/pd4d10/system-monitor |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "System Monitor", "version": "1.5.1", "description": "Monitor system status like CPU, memory, battery", "homepage_url": "https:\/\/github.com\/pd4d10\/system-monitor", "offline_enabled": true, "background": { "scripts": [ "dist\/background.js" ] }, "permissions": [ "system.cpu", "system.memory", "system.storage", "storage" ], "browser_action": { "default_popup": "dist\/popup.html" }, "options_ui": { "page": "dist\/options.html", "chrome_style": true }, "icons": { "128": "icon.png" } } |