pbkit-devtools

pbkit devtools

What is pbkit-devtools?

pbkit-devtools is a Chrome extension developed by https://pbkit.dev, and its main feature is "pbkit devtools".

Extension Screenshots

screenshot

Download pbkit-devtools Extension CRX File

Download pbkit-devtools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name pbkit-devtools pbkit-devtools
ID fjacmiijeihblfhobghceofniolonhca
Official URL https://chromewebstore.google.com/detail/pbkit-devtools/fjacmiijeihblfhobghceofniolonhca
Description pbkit devtools
File Size 240 KB
Installation Count 136
Current Version 0.0.8
Last Updated 2022-09-03
Publish Date 2022-01-19
Rating 5.00/5 Total 1 Ratings
Developer https://pbkit.dev
Email [email protected]
Payment Type free
Extension Website https://github.com/pbkit/pbkit-devtools
Supported Languages 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"
}