gRPC-Web Developer Tools

gRPC-Web Developer Tools for debugging application's gRPC-Web network requests.

gRPC-Web Developer Tools란 무엇입니까?

gRPC-Web Developer Tools은(는) SafetyCulture Pty Ltd.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "gRPC-Web Developer Tools for debugging application's gRPC-Web network requests."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

gRPC-Web Developer Tools 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        gRPC-Web Developer Tools for debugging application's gRPC-Web network requests.
gRPC-Web Developer Tools is a Chrome DevTools extension for the official gRPC-Web library. It allows you to inspect the gRPC network log in the Chrome Developer Tools, and displayed as the deserialized JSON objects, rather than the base64 encoded binary format.

You will get a new tab called gRPC-Web in your Chrome DevTools. This will start recording gRPC client network requests that have been configured (see Usage for details). Features are similar to the default Network tab, but only tracks gRPC requests.

Selecting a network log entry will display the deserialized JSON for the request, response and any error object returned by your gRPC server.                    

확장 프로그램 기본 정보

이름 gRPC-Web Developer Tools gRPC-Web Developer Tools
ID kanmilmfkjnoladbbamlclhccicldjaj
공식 URL https://chromewebstore.google.com/detail/grpc-web-developer-tools/kanmilmfkjnoladbbamlclhccicldjaj
설명 gRPC-Web Developer Tools for debugging application's gRPC-Web network requests.
파일 크기 425 KB
설치 횟수 7,310
현재 버전 1.4.0
최근 업데이트 2023-11-06
출시 날짜 2021-10-25
평점 3.33/5 총 9 개의 평점
개발자 SafetyCulture Pty Ltd.
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/SafetyCulture/grpc-web-devtools
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "gRPC-Web Developer Tools",
    "version": "1.4.0",
    "manifest_version": 2,
    "description": "gRPC-Web Developer Tools for debugging application's gRPC-Web network requests.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "devtools_page": "devtools.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "connect-web-interceptor.js"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": []
}