Storage Monitor

Monitor system capacity

What is Storage Monitor?

Storage Monitor is a Chrome extension developed by benzihomo, and its main feature is "Monitor system capacity".

Extension Screenshots

screenshot

Download Storage Monitor Extension CRX File

Download Storage Monitor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Press "Alt+Shift+W" to display your system capacity details.                    

Extension Basic Information

Name Storage Monitor Storage Monitor
ID albkjjcpjnleafcacecgjoaddehbojko
Official URL https://chrome.google.com/webstore/detail/storage-monitor/albkjjcpjnleafcacecgjoaddehbojko
Description Monitor system capacity
File Size 17.14 KB
Installation Count 103
Current Version 0.1
Last Updated 2014-06-19
Publish Date 2014-06-19
Rating 1.00/5 Total 1 Ratings
Developer benzihomo
Payment Type free
Supported Languages 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"
        }
    }
}