pbkit-devtools

pbkit devtools

Cos'è pbkit-devtools?

pbkit-devtools è un'estensione di Chrome sviluppata da https://pbkit.dev, e la sua funzione principale è "pbkit devtools".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione pbkit-devtools

Scarica i file di estensione pbkit-devtools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome pbkit-devtools pbkit-devtools
ID fjacmiijeihblfhobghceofniolonhca
URL Ufficiale https://chromewebstore.google.com/detail/pbkit-devtools/fjacmiijeihblfhobghceofniolonhca
Descrizione pbkit devtools
Dimensione del File 240 KB
Conteggio Installazioni 136
Versione Corrente 0.0.8
Ultimo Aggiornamento 2022-09-03
Data di Pubblicazione 2022-01-19
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://pbkit.dev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/pbkit/pbkit-devtools
Lingue Supportate 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"
}