SSE Viewer

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

什么是SSE Viewer?

SSE Viewer是由maltoze开发的Chrome扩展程序,该扩展的主要功能是“SSE Viewer is a Chrome extension for displaying EventStream in the devtools”。

扩展截图

screenshot

下载SSE Viewer扩展crx文件

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

扩展使用说明

                        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
帮助页面URL 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"
            ]
        }
    ]
}