WebMon

Monitor variables exported from JavaScript

Cos'è WebMon?

WebMon è un'estensione di Chrome sviluppata da Christian Plesner Hansen, e la sua funzione principale è "Monitor variables exported from JavaScript".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione WebMon

Scarica i file di estensione WebMon in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome WebMon WebMon
ID edecgbjfjpedgppbmhedaoiffklffnal
URL Ufficiale https://chromewebstore.google.com/detail/webmon/edecgbjfjpedgppbmhedaoiffklffnal
Descrizione Monitor variables exported from JavaScript
Dimensione del File 15.29 KB
Conteggio Installazioni 32
Versione Corrente 0.1
Ultimo Aggiornamento 2012-07-28
Data di Pubblicazione 2012-07-28
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore Christian Plesner Hansen
Tipo di Pagamento free
Sito Web dell'Estensione http://github.com/plesner/webmon
Lingue Supportate 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
}