SSE Viewer

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

What is SSE Viewer?

SSE Viewer is a Chrome extension developed by maltoze, and its main feature is "SSE Viewer is a Chrome extension for displaying EventStream in the devtools".

Extension Screenshots

screenshot

Download SSE Viewer Extension CRX File

Download SSE Viewer 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

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

Extension Basic Information

Name SSE Viewer SSE Viewer
ID pkofiecpdokojdgoccnbfplkphbmppaf
Official URL https://chromewebstore.google.com/detail/sse-viewer/pkofiecpdokojdgoccnbfplkphbmppaf
Description SSE Viewer is a Chrome extension for displaying EventStream in the devtools
File Size 8.43 KB
Installation Count 2,339
Current Version 0.1.2
Last Updated 2023-07-27
Publish Date 2023-07-22
Rating 4.43/5 Total 7 Ratings
Developer maltoze
Email [email protected]
Payment Type free
Extension Website https://github.com/maltoze/sse-viewer
Help Page URL https://github.com/maltoze/sse-viewer/issues
Supported Languages 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"
            ]
        }
    ]
}