postMessage debugger

This extension prints messages sent with postMessage to the console

postMessage debugger là gì?

postMessage debugger là một tiện ích mở rộng Chrome được phát triển bởi wille.eklund, và tính năng chính của nó là "This extension prints messages sent with postMessage to the console".

Ả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 postMessage debugger

Tải xuống các tệp mở rộng postMessage debugger 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

                        This chrome extension prints messages sent with postMessage to the console for debugging.                    

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

Tên postMessage debugger postMessage debugger
ID ibnkhbkkelpcgofjlfnlanbigclpldad
URL Chính Thức https://chromewebstore.google.com/detail/postmessage-debugger/ibnkhbkkelpcgofjlfnlanbigclpldad
Mô tả This extension prints messages sent with postMessage to the console
Kích Thước Tệp 3.61 KB
Số Lần Cài Đặt 4,982
Phiên Bản Hiện Tại 0.2.0
Cập Nhật Lần Cuối 2018-11-28
Ngày Phát Hành 2018-11-23
Đánh Giá 4.58/5 Tổng số 12 Đánh Giá
Nhà Phát Triển wille.eklund
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "postMessage debugger",
    "description": "This extension prints messages sent with postMessage to the console",
    "version": "0.2.0",
    "browser_action": {
        "name": "Debug postMessages"
    },
    "content_scripts": [
        {
            "js": [
                "js\/postMessage-debugger.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true
        }
    ]
}