Network Chunks

Track the chunks fetched over the Network

Network Chunks là gì?

Network Chunks là một tiện ích mở rộng Chrome được phát triển bởi devxmofficial, và tính năng chính của nó là "Track the chunks fetched over the Network".

Ả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 Network Chunks

Tải xuống các tệp mở rộng Network Chunks 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

                        Capture the chunks fetched over the Network and copy them to your .env.chunks.local file                    

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

Tên Network Chunks Network Chunks
ID cdhpofaebcgpabjpdfgfddjhfaloflkj
URL Chính Thức https://chromewebstore.google.com/detail/network-chunks/cdhpofaebcgpabjpdfgfddjhfaloflkj
Mô tả Track the chunks fetched over the Network
Kích Thước Tệp 187 KB
Số Lần Cài Đặt 113
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2022-08-05
Ngày Phát Hành 2022-08-05
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển devxmofficial
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.sprinklr.com/privacy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Network Chunks",
    "description": "Track the chunks fetched over the Network",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_title": "Network Chunks"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.sprinklr.com\/*"
            ],
            "js": [
                ".\/static\/js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "host_permissions": [
        "https:\/\/*.sprinklr.com\/*"
    ],
    "background": {
        "service_worker": ".\/static\/js\/background.js"
    },
    "icons": {
        "16": "logo192.png",
        "48": "logo192.png",
        "128": "logo192.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "tabs"
    ]
}