Network Chunks

Track the chunks fetched over the Network

什么是Network Chunks?

Network Chunks是由devxmofficial开发的Chrome扩展程序,该扩展的主要功能是“Track the chunks fetched over the Network”。

扩展截图

screenshot

下载Network Chunks扩展crx文件

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

扩展使用说明

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

扩展基本信息

名称 Network Chunks Network Chunks
ID cdhpofaebcgpabjpdfgfddjhfaloflkj
官方URL https://chromewebstore.google.com/detail/network-chunks/cdhpofaebcgpabjpdfgfddjhfaloflkj
简介 Track the chunks fetched over the Network
文件大小 187 KB
安装次数 113
当前版本 1.0
更新时间 2022-08-05
上架时间 2022-08-05
评分 5.00/5 共1次评分
开发者 devxmofficial
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://www.sprinklr.com/privacy
支持的语言 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"
    ]
}