pbkit-devtools

pbkit devtools

pbkit-devtools là gì?

pbkit-devtools là một tiện ích mở rộng Chrome được phát triển bởi https://pbkit.dev, và tính năng chính của nó là "pbkit devtools".

Ả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 pbkit-devtools

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

                        Pbkit Developer Tools for debugging client requests.

Pbkit is JavaScript library that support protocol buffers and gRPC protocol.

This extension creates a tab named pbkit in Chrome DevTools, detects a request from the pbkit client and displays a JSON-encoded message in that tab.

It works similarly to the Network tab in Chrome Developer Tools.
It shows metadata, response headers/trailers, and payloads for each request in JSON format and provides a function to easily copy the value of each field.                    

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

Tên pbkit-devtools pbkit-devtools
ID fjacmiijeihblfhobghceofniolonhca
URL Chính Thức https://chromewebstore.google.com/detail/pbkit-devtools/fjacmiijeihblfhobghceofniolonhca
Mô tả pbkit devtools
Kích Thước Tệp 240 KB
Số Lần Cài Đặt 136
Phiên Bản Hiện Tại 0.0.8
Cập Nhật Lần Cuối 2022-09-03
Ngày Phát Hành 2022-01-19
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://pbkit.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/pbkit/pbkit-devtools
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "pbkit-devtools",
    "version": "0.0.8",
    "description": "pbkit devtools",
    "icons": {
        "128": "icons\/pbkit-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "devtools_page": "devtools.html"
}