WebMon

Monitor variables exported from JavaScript

Co to jest WebMon?

WebMon to rozszerzenie Chrome opracowane przez Christian Plesner Hansen, a jego główną funkcją jest „Monitor variables exported from JavaScript”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia WebMon

Pobierz pliki rozszerzeń WebMon w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa WebMon WebMon
ID edecgbjfjpedgppbmhedaoiffklffnal
Oficjalny URL https://chromewebstore.google.com/detail/webmon/edecgbjfjpedgppbmhedaoiffklffnal
Opis Monitor variables exported from JavaScript
Rozmiar pliku 15.29 KB
Liczba instalacji 32
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2012-07-28
Data Publikacji 2012-07-28
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper Christian Plesner Hansen
Typ Płatności free
Strona Rozszerzenia http://github.com/plesner/webmon
Obsługiwane Języki 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
}