WebMon

Monitor variables exported from JavaScript

WebMon là gì?

WebMon là một tiện ích mở rộng Chrome được phát triển bởi Christian Plesner Hansen, và tính năng chính của nó là "Monitor variables exported from JavaScript".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng WebMon

Tải xuống các tệp mở rộng WebMon dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên WebMon WebMon
ID edecgbjfjpedgppbmhedaoiffklffnal
URL Chính Thức https://chromewebstore.google.com/detail/webmon/edecgbjfjpedgppbmhedaoiffklffnal
Mô tả Monitor variables exported from JavaScript
Kích Thước Tệp 15.29 KB
Số Lần Cài Đặt 32
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2012-07-28
Ngày Phát Hành 2012-07-28
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Christian Plesner Hansen
Loại Thanh Toán free
Trang Web Mở Rộng http://github.com/plesner/webmon
Ngôn Ngữ Được Hỗ Trợ 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
}