System Monitor

Monitor system status like CPU, memory, battery

What is System Monitor?

System Monitor is a Chrome extension developed by Rongjian Zhang, and its main feature is "Monitor system status like CPU, memory, battery".

Extension Screenshots

screenshot
screenshot

Download System Monitor Extension CRX File

Download System Monitor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Source code:

https://github.com/pd4d10/system-monitor                    

Extension Basic Information

Name System Monitor System Monitor
ID ecmlflnkenbdjfocclindonmigndecla
Official URL https://chromewebstore.google.com/detail/system-monitor/ecmlflnkenbdjfocclindonmigndecla
Description Monitor system status like CPU, memory, battery
File Size 94.98 KB
Installation Count 12,890
Current Version 1.5.1
Last Updated 2020-02-01
Publish Date 2020-02-01
Rating 4.57/5 Total 49 Ratings
Developer Rongjian Zhang
Email [email protected]
Payment Type free
Extension Website https://github.com/pd4d10/system-monitor
Help Page URL https://github.com/pd4d10/system-monitor
Supported Languages 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"
    }
}