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 |
官方網址 | 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" } } |