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 |
| 公式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 |
| Eメール | [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"
}
} | |