pbkit-devtools

pbkit devtools

什么是pbkit-devtools?

pbkit-devtools是由https://pbkit.dev开发的Chrome扩展程序,该扩展的主要功能是“pbkit devtools”。

扩展截图

screenshot

下载pbkit-devtools扩展crx文件

下载pbkit-devtools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 pbkit-devtools pbkit-devtools
ID fjacmiijeihblfhobghceofniolonhca
官方URL https://chromewebstore.google.com/detail/pbkit-devtools/fjacmiijeihblfhobghceofniolonhca
简介 pbkit devtools
文件大小 240 KB
安装次数 136
当前版本 0.0.8
更新时间 2022-09-03
上架时间 2022-01-19
评分 5.00/5 共1次评分
开发者 https://pbkit.dev
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/pbkit/pbkit-devtools
支持的语言 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"
}