pbkit-devtools

pbkit devtools

Wat is pbkit-devtools?

pbkit-devtools is een Chrome-extensie ontwikkeld door https://pbkit.dev, en de belangrijkste functie is "pbkit devtools".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie pbkit-devtools

Download pbkit-devtools-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam pbkit-devtools pbkit-devtools
ID fjacmiijeihblfhobghceofniolonhca
Officiële URL https://chromewebstore.google.com/detail/pbkit-devtools/fjacmiijeihblfhobghceofniolonhca
Beschrijving pbkit devtools
Bestandsgrootte 240 KB
Aantal Installaties 136
Huidige Versie 0.0.8
Laatst Bijgewerkt 2022-09-03
Publicatiedatum 2022-01-19
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://pbkit.dev
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/pbkit/pbkit-devtools
Ondersteunde Talen 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"
}