Memory Monitor

Monitor system memory usage

Memory Monitor là gì?

Memory Monitor là một tiện ích mở rộng Chrome được phát triển bởi dan.belz69, và tính năng chính của nó là "Monitor system memory usage".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Memory Monitor

Tải xuống các tệp mở rộng Memory Monitor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Press "Alt+Shift+M" to toggle displaying the system memory monitor                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Memory Monitor Memory Monitor
ID djibnebekkebpogajfdjnhdhmehebooh
URL Chính Thức https://chrome.google.com/webstore/detail/memory-monitor/djibnebekkebpogajfdjnhdhmehebooh
Mô tả Monitor system memory usage
Kích Thước Tệp 23.69 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2014-06-19
Ngày Phát Hành 2014-06-19
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển dan.belz69
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Memory Monitor",
    "description": "Monitor system memory usage",
    "version": "0.1",
    "manifest_version": 2,
    "permissions": [
        "system.memory",
        "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-memory-monitor": {
            "suggested_key": {
                "default": "Alt+Shift+M"
            },
            "description": "Toggle Memory Monitor"
        }
    }
}