Storage Monitor

Monitor system capacity

Storage Monitorคืออะไร?

Storage Monitor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย benzihomo และคุณลักษณะหลักของมันคือ "Monitor system capacity"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Storage Monitor

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    }
}