Memory Monitor

Monitor system memory usage

Memory Monitorとは何ですか?

Memory Monitorはdan.belz69によって開発されたChromeの拡張機能で、その主な機能は「Monitor system memory usage」です。

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

screenshot

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

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

拡張機能の使用方法

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

拡張機能の基本情報

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