System Monitor
Monitor system status like CPU, memory, battery
Cos'è System Monitor?
System Monitor è un'estensione di Chrome sviluppata da Rongjian Zhang, e la sua funzione principale è "Monitor system status like CPU, memory, battery".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione System Monitor
Scarica i file di estensione System Monitor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Source code:
https://github.com/pd4d10/system-monitor Informazioni di Base sull'Estensione
| Nome | |
| ID | ecmlflnkenbdjfocclindonmigndecla |
| URL Ufficiale | https://chromewebstore.google.com/detail/system-monitor/ecmlflnkenbdjfocclindonmigndecla |
| Descrizione | Monitor system status like CPU, memory, battery |
| Dimensione del File | 94.98 KB |
| Conteggio Installazioni | 12,890 |
| Versione Corrente | 1.5.1 |
| Ultimo Aggiornamento | 2020-02-01 |
| Data di Pubblicazione | 2020-02-01 |
| Valutazione | 4.57/5 Totale 49 Valutazioni |
| Sviluppatore | Rongjian Zhang |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/pd4d10/system-monitor |
| URL della Pagina di Aiuto | https://github.com/pd4d10/system-monitor |
| Lingue Supportate | 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"
}
} | |