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
Eメール [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"
            ]
        }
    ]
}