WebMon

Monitor variables exported from JavaScript

What is WebMon?

WebMon is a Chrome extension developed by Christian Plesner Hansen, and its main feature is "Monitor variables exported from JavaScript".

Extension Screenshots

screenshot

Download WebMon Extension CRX File

Download WebMon 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

                        WebMon provides an easy way to monitor running web apps. JavaScript code can export information using the webmon.js library and this chrome extension will read the exported values and display them in a popup.

Get the webmon library from http://github.com/plesner/webmon.                    

Extension Basic Information

Name WebMon WebMon
ID edecgbjfjpedgppbmhedaoiffklffnal
Official URL https://chromewebstore.google.com/detail/webmon/edecgbjfjpedgppbmhedaoiffklffnal
Description Monitor variables exported from JavaScript
File Size 15.29 KB
Installation Count 32
Current Version 0.1
Last Updated 2012-07-28
Publish Date 2012-07-28
Rating 1.00/5 Total 1 Ratings
Developer Christian Plesner Hansen
Payment Type free
Extension Website http://github.com/plesner/webmon
Supported Languages en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WebMon",
    "version": "0.1",
    "description": "Monitor variables exported from JavaScript",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "icon-19.png"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "manifest_version": 2
}