gRPC-Web Developer Tools

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

Co je gRPC-Web Developer Tools?

gRPC-Web Developer Tools je rozšíření Chrome vyvinuté SafetyCulture Pty Ltd., a jeho hlavní funkcí je „gRPC-Web Developer Tools for debugging application's gRPC-Web network requests.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření gRPC-Web Developer Tools

Stáhněte si soubory rozšíření gRPC-Web Developer Tools ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název gRPC-Web Developer Tools gRPC-Web Developer Tools
ID kanmilmfkjnoladbbamlclhccicldjaj
Oficiální URL https://chromewebstore.google.com/detail/grpc-web-developer-tools/kanmilmfkjnoladbbamlclhccicldjaj
Popis gRPC-Web Developer Tools for debugging application's gRPC-Web network requests.
Velikost souboru 425 KB
Počet instalací 7,310
Aktuální Verze 1.4.0
Poslední Aktualizace 2023-11-06
Datum Vydání 2021-10-25
Hodnocení 3.33/5 Celkem 9 Hodnocení
Vývojář SafetyCulture Pty Ltd.
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/SafetyCulture/grpc-web-devtools
Podporované Jazyky 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": []
}