System Monitor

Monitor system status like CPU, memory, battery

Что такое System Monitor?

System Monitor - это расширение Chrome, разработанное Rongjian Zhang, и его основная функция - "Monitor system status like CPU, memory, battery".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения System Monitor

Скачайте файлы расширений System Monitor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Source code:

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

Основная информация о расширении

Название System Monitor 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
Электронная почта [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"
    }
}