SSE Viewer

SSE Viewer is a Chrome extension for displaying EventStream in the devtools

ما هو SSE Viewer؟

SSE Viewer هو إضافة Chrome تم تطويرها بواسطة maltoze، والميزة الرئيسية لها هي "SSE Viewer is a Chrome extension for displaying EventStream in the devtools".

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

screenshot

تحميل ملف CRX للإضافة SSE Viewer

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

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

                        SSE Viewer is a Chrome extension that allows you to easily view EventStream data from event stream requests made using fetch.                    

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

الاسم SSE Viewer SSE Viewer
ID pkofiecpdokojdgoccnbfplkphbmppaf
عنوان URL الرسمي https://chromewebstore.google.com/detail/sse-viewer/pkofiecpdokojdgoccnbfplkphbmppaf
الوصف SSE Viewer is a Chrome extension for displaying EventStream in the devtools
حجم الملف 8.43 KB
عدد التثبيتات 2,339
النسخة الحالية 0.1.2
آخر تحديث 2023-07-27
تاريخ النشر 2023-07-22
تقييم 4.43/5 مجموع تقييمات 7
المطور maltoze
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/maltoze/sse-viewer
عنوان صفحة المساعدة https://github.com/maltoze/sse-viewer/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SSE Viewer",
    "description": "SSE Viewer is a Chrome extension for displaying EventStream in the devtools",
    "version": "0.1.2",
    "permissions": [
        "debugger",
        "activeTab"
    ],
    "background": {
        "service_worker": "service-worker.js"
    },
    "icons": {
        "16": "assets\/icon.png",
        "32": "assets\/icon.png",
        "48": "assets\/icon.png",
        "128": "assets\/icon.png"
    },
    "action": {
        "default_icon": "assets\/icon-gray.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}