WebMon

Monitor variables exported from JavaScript

WebMonとは何ですか?

WebMonはChristian Plesner Hansenによって開発されたChromeの拡張機能で、その主な機能は「Monitor variables exported from JavaScript」です。

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

screenshot

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

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

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 WebMon WebMon
ID edecgbjfjpedgppbmhedaoiffklffnal
公式URL https://chromewebstore.google.com/detail/webmon/edecgbjfjpedgppbmhedaoiffklffnal
説明 Monitor variables exported from JavaScript
ファイルサイズ 15.29 KB
インストール数 32
現在のバージョン 0.1
最終更新日 2012-07-28
公開日 2012-07-28
評価 1.00/5 合計 1 レビュー
開発者 Christian Plesner Hansen
支払い方法 free
拡張機能のウェブサイト http://github.com/plesner/webmon
対応言語 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
}