System Monitor for CPU / Memory
A tool that display system CPU or Memory usage on the extension icon.
什么是System Monitor for CPU / Memory?
System Monitor for CPU / Memory是由https://guokai.dev开发的Chrome扩展程序,该扩展的主要功能是“A tool that display system CPU or Memory usage on the extension icon.”。
扩展截图
下载System Monitor for CPU / Memory扩展crx文件
下载System Monitor for CPU / Memory扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension displays system's cpu or memory usage on the extension icon. Mouse over on it to show more details. You can set options in the popup page: • Display Type: CPU or Memory • Display Format: Number or Graph • Update Frequency • Enable or Disable Note: 1. Memory Usage: because system cache is also counted as used memory, high memory usage does not necessarily mean insufficient memory. 2. CPU Temperature: it is displayed in the tooltip of the extension icon when you select "Display Type: CPU", and it is only available on Chrome OS.
扩展基本信息
名称 | System Monitor for CPU / Memory |
ID | fcofohckagnahikfankmacbepefilmof |
官方URL | https://chromewebstore.google.com/detail/system-monitor-for-cpu-me/fcofohckagnahikfankmacbepefilmof |
简介 | A tool that display system CPU or Memory usage on the extension icon. |
文件大小 | 10.19 KB |
安装次数 | 2,041 |
当前版本 | 2.0.0 |
更新时间 | 2024-03-03 |
上架时间 | 2020-02-07 |
评分 | 4.56/5 共9次评分 |
开发者 | 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": "2.0.0", "minimum_chrome_version": "110", "author": "Guokai Han", "manifest_version": 3, "description": "__MSG_extDescription__", "default_locale": "en", "offline_enabled": true, "permissions": [ "storage", "system.cpu", "system.memory" ], "icons": { "16": "icon\/16.png", "48": "icon\/48.png", "128": "icon\/128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html" } } |