SSE Viewer

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

Co to jest SSE Viewer?

SSE Viewer to rozszerzenie Chrome opracowane przez maltoze, a jego główną funkcją jest „SSE Viewer is a Chrome extension for displaying EventStream in the devtools”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia SSE Viewer

Pobierz pliki rozszerzeń SSE Viewer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa SSE Viewer SSE Viewer
ID pkofiecpdokojdgoccnbfplkphbmppaf
Oficjalny URL https://chromewebstore.google.com/detail/sse-viewer/pkofiecpdokojdgoccnbfplkphbmppaf
Opis SSE Viewer is a Chrome extension for displaying EventStream in the devtools
Rozmiar pliku 8.43 KB
Liczba instalacji 2,339
Aktualna Wersja 0.1.2
Ostatnia Aktualizacja 2023-07-27
Data Publikacji 2023-07-22
Ocena 4.43/5 Łącznie 7 Oceny
Deweloper maltoze
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/maltoze/sse-viewer
Adres URL Strony Pomocy https://github.com/maltoze/sse-viewer/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}