gRPC-Web Developer Tools

gRPC-Web Developer Tools for debugging application's gRPC-Web network requests.

ما هو gRPC-Web Developer Tools؟

gRPC-Web Developer Tools هو إضافة Chrome تم تطويرها بواسطة SergioTx، والميزة الرئيسية لها هي "gRPC-Web Developer Tools for debugging application's gRPC-Web network requests.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة gRPC-Web Developer Tools

قم بتنزيل ملفات الامتداد gRPC-Web Developer Tools بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        gRPC-Web Developer Tools is a Chrome DevTools extension for the official gRPC-Web library. It allows you to inspect the gRPC network log in the Chrome Developer Tools, and displayed as the deserialized JSON objects, rather than the base64 encoded binary format.

You will get a new tab called gRPC-Web in your Chrome DevTools. This will start recording gRPC client network requests that have been configured (see Usage for details). Features are similar to the default Network tab, but only tracks gRPC requests.

Selecting a network log entry will display the deserialized JSON for the request, response and any error object returned by your gRPC server.

There is some setup needed in the code before using this extension. Take a look at the README: https://github.com/SergioTx/grpc-web-devtools

Fork from: https://chrome.google.com/webstore/detail/grpc-web-developer-tools/kanmilmfkjnoladbbamlclhccicldjaj adding a couple of fixes.                    

معلومات أساسية عن التمديد

الاسم gRPC-Web Developer Tools gRPC-Web Developer Tools
ID cacoibopgjlodngfokahhkphgcohakai
عنوان URL الرسمي https://chromewebstore.google.com/detail/grpc-web-developer-tools/cacoibopgjlodngfokahhkphgcohakai
الوصف gRPC-Web Developer Tools for debugging application's gRPC-Web network requests.
حجم الملف 446 KB
عدد التثبيتات 127
النسخة الحالية 2.3.0
آخر تحديث 2023-11-29
تاريخ النشر 2023-08-01
تقييم 4.00/5 مجموع تقييمات 4
المطور SergioTx
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/SergioTx/grpc-web-devtools
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "gRPC-Web Developer Tools",
    "version": "2.3.0",
    "manifest_version": 3,
    "description": "gRPC-Web Developer Tools for debugging application's gRPC-Web network requests.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "devtools_page": "devtools.html",
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "connect-web-interceptor.js",
                "inject.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ]
}