Storage Monitor

Monitor system capacity

Cos'è Storage Monitor?

Storage Monitor è un'estensione di Chrome sviluppata da benzihomo, e la sua funzione principale è "Monitor system capacity".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Storage Monitor

Scarica i file di estensione Storage 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+W" to display your system capacity details.                    

Informazioni di Base sull'Estensione

Nome Storage Monitor Storage Monitor
ID albkjjcpjnleafcacecgjoaddehbojko
URL Ufficiale https://chrome.google.com/webstore/detail/storage-monitor/albkjjcpjnleafcacecgjoaddehbojko
Descrizione Monitor system capacity
Dimensione del File 17.14 KB
Conteggio Installazioni 103
Versione Corrente 0.1
Ultimo Aggiornamento 2014-06-19
Data di Pubblicazione 2014-06-19
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore benzihomo
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Storage Monitor",
    "description": "Monitor system capacity",
    "version": "0.1",
    "manifest_version": 2,
    "permissions": [
        "system.storage",
        "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-storage-monitor": {
            "suggested_key": {
                "default": "Alt+Shift+M"
            },
            "description": "Toggle Storage Monitor"
        }
    }
}