Memory Monitor

Monitor system memory usage

What is Memory Monitor?

Memory Monitor is a Chrome extension developed by dan.belz69, and its main feature is "Monitor system memory usage".

Extension Screenshots

screenshot

Download Memory Monitor Extension CRX File

Download Memory Monitor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Memory Monitor Memory Monitor
ID djibnebekkebpogajfdjnhdhmehebooh
Official URL https://chrome.google.com/webstore/detail/memory-monitor/djibnebekkebpogajfdjnhdhmehebooh
Description Monitor system memory usage
File Size 23.69 KB
Installation Count 20
Current Version 0.1
Last Updated 2014-06-19
Publish Date 2014-06-19
Rating 1.00/5 Total 1 Ratings
Developer dan.belz69
Payment Type free
Supported Languages 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"
        }
    }
}