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
官方網址 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"
        }
    }
}