Storage Monitor

Monitor system capacity

Storage Monitorとは何ですか?

Storage Monitorはbenzihomoによって開発されたChromeの拡張機能で、その主な機能は「Monitor system capacity」です。

拡張機能のスクリーンショット

screenshot

Storage Monitor拡張機能のCRXファイルをダウンロード

Storage Monitor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Storage Monitor Storage Monitor
ID albkjjcpjnleafcacecgjoaddehbojko
公式URL https://chrome.google.com/webstore/detail/storage-monitor/albkjjcpjnleafcacecgjoaddehbojko
説明 Monitor system capacity
ファイルサイズ 17.14 KB
インストール数 103
現在のバージョン 0.1
最終更新日 2014-06-19
公開日 2014-06-19
評価 1.00/5 合計 1 レビュー
開発者 benzihomo
支払い方法 free
対応言語 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"
        }
    }
}