postMessage-catcher

A Chrome extension that captures the content of postMessage.

postMessage-catcher là gì?

postMessage-catcher là một tiện ích mở rộng Chrome được phát triển bởi yangjin, và tính năng chính của nó là "A Chrome extension that captures the content of postMessage.".

Ả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-catcher

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

                        An effective development tool to help you capture all messages posted and received on the current page. 

It aims to provide an easier debugging experience when you need to communicate with other iframes.

Contributions are welcome to the Github project.                    

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

Tên postMessage-catcher postMessage-catcher
ID henlmhlhpgnkeecjjcbhhcfmecohnilo
URL Chính Thức https://chromewebstore.google.com/detail/postmessage-catcher/henlmhlhpgnkeecjjcbhhcfmecohnilo
Mô tả A Chrome extension that captures the content of postMessage.
Kích Thước Tệp 750 KB
Số Lần Cài Đặt 974
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2021-08-22
Ngày Phát Hành 2021-06-06
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển yangjin
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/niexia/postMessage-catcher
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "postMessage-catcher",
    "version": "1.2.0",
    "description": "A Chrome extension that captures the content of postMessage.",
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-32.png",
        "32": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "author": "yang jin",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/icon-48.png",
        "default_title": "postMessage catcher",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content-script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "js\/injected-script.js"
    ],
    "homepage_url": "https:\/\/github.com\/niexia\/postMessage-catcher",
    "permissions": [
        "storage"
    ]
}