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 擴展基本資訊
| 名稱 | |
| ID | ecmlflnkenbdjfocclindonmigndecla |
| 官方網址 | 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"
}
} | |