Memory Monitor
Monitor system memory usage
Cos'è Memory Monitor?
Memory Monitor è un'estensione di Chrome sviluppata da dan.belz69, e la sua funzione principale è "Monitor system memory usage".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Memory Monitor
Scarica i file di estensione Memory 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
Press "Alt+Shift+M" to toggle displaying the system memory monitor Informazioni di Base sull'Estensione
| Nome | |
| ID | djibnebekkebpogajfdjnhdhmehebooh |
| URL Ufficiale | https://chrome.google.com/webstore/detail/memory-monitor/djibnebekkebpogajfdjnhdhmehebooh |
| Descrizione | Monitor system memory usage |
| Dimensione del File | 23.69 KB |
| Conteggio Installazioni | 20 |
| Versione Corrente | 0.1 |
| Ultimo Aggiornamento | 2014-06-19 |
| Data di Pubblicazione | 2014-06-19 |
| Valutazione | 1.00/5 Totale 1 Valutazioni |
| Sviluppatore | dan.belz69 |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Memory Monitor",
"description": "Monitor system memory usage",
"version": "0.1",
"manifest_version": 2,
"permissions": [
"system.memory",
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"extension.css"
],
"js": [
"extension.js"
]
}
],
"commands": {
"toggle-memory-monitor": {
"suggested_key": {
"default": "Alt+Shift+M"
},
"description": "Toggle Memory Monitor"
}
}
} | |