pbkit-devtools

pbkit devtools

Was ist pbkit-devtools?

pbkit-devtools ist eine Chrome-Erweiterung, die von https://pbkit.dev entwickelt wurde, und ihr Hauptmerkmal ist "pbkit devtools".

Erweiterungsscreenshots

screenshot

pbkit-devtools-Erweiterungs-CRX-Datei herunterladen

Laden Sie pbkit-devtools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name pbkit-devtools pbkit-devtools
ID fjacmiijeihblfhobghceofniolonhca
Offizielle URL https://chromewebstore.google.com/detail/pbkit-devtools/fjacmiijeihblfhobghceofniolonhca
Beschreibung pbkit devtools
Dateigröße 240 KB
Installationsanzahl 136
Aktuelle Version 0.0.8
Letztes Update 2022-09-03
Veröffentlichungsdatum 2022-01-19
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://pbkit.dev
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/pbkit/pbkit-devtools
Unterstützte Sprachen 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"
}