pbkit-devtools

pbkit devtools

pbkit-devtools란 무엇입니까?

pbkit-devtools은(는) https://pbkit.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "pbkit devtools"입니다.

확장 프로그램 스크린샷

screenshot

pbkit-devtools 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 pbkit-devtools pbkit-devtools
ID fjacmiijeihblfhobghceofniolonhca
공식 URL https://chromewebstore.google.com/detail/pbkit-devtools/fjacmiijeihblfhobghceofniolonhca
설명 pbkit devtools
파일 크기 240 KB
설치 횟수 136
현재 버전 0.0.8
최근 업데이트 2022-09-03
출시 날짜 2022-01-19
평점 5.00/5 총 1 개의 평점
개발자 https://pbkit.dev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/pbkit/pbkit-devtools
지원되는 언어 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"
}