SSE Viewer

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

SSE Viewer là gì?

SSE Viewer là một tiện ích mở rộng Chrome được phát triển bởi maltoze, và tính năng chính của nó là "SSE Viewer is a Chrome extension for displaying EventStream in the devtools".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng SSE Viewer

Tải xuống các tệp mở rộng SSE Viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SSE Viewer SSE Viewer
ID pkofiecpdokojdgoccnbfplkphbmppaf
URL Chính Thức https://chromewebstore.google.com/detail/sse-viewer/pkofiecpdokojdgoccnbfplkphbmppaf
Mô tả SSE Viewer is a Chrome extension for displaying EventStream in the devtools
Kích Thước Tệp 8.43 KB
Số Lần Cài Đặt 2,339
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2023-07-27
Ngày Phát Hành 2023-07-22
Đánh Giá 4.43/5 Tổng số 7 Đánh Giá
Nhà Phát Triển maltoze
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/maltoze/sse-viewer
URL Trang Trợ Giúp https://github.com/maltoze/sse-viewer/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}