System Monitor for CPU / Memory
A tool that display system CPU or Memory usage on the extension icon.
Co to jest System Monitor for CPU / Memory?
System Monitor for CPU / Memory to rozszerzenie Chrome opracowane przez https://guokai.dev, a jego główną funkcją jest „A tool that display system CPU or Memory usage on the extension icon.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia System Monitor for CPU / Memory
Pobierz pliki rozszerzeń System Monitor for CPU / Memory w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | System Monitor for CPU / Memory |
ID | fcofohckagnahikfankmacbepefilmof |
Oficjalny URL | https://chromewebstore.google.com/detail/system-monitor-for-cpu-me/fcofohckagnahikfankmacbepefilmof |
Opis | A tool that display system CPU or Memory usage on the extension icon. |
Rozmiar pliku | 10.19 KB |
Liczba instalacji | 2,041 |
Aktualna Wersja | 2.0.0 |
Ostatnia Aktualizacja | 2024-03-03 |
Data Publikacji | 2020-02-07 |
Ocena | 4.56/5 Łącznie 9 Oceny |
Deweloper | https://guokai.dev |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://guokai.dev/privacy |
Obsługiwane Języki | 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" } } |