Network Chunks

Track the chunks fetched over the Network

O que é Network Chunks?

Network Chunks é uma extensão do Chrome desenvolvida por devxmofficial, e sua principal característica é "Track the chunks fetched over the Network".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Network Chunks

Baixe arquivos de extensão Network Chunks no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Network Chunks Network Chunks
ID cdhpofaebcgpabjpdfgfddjhfaloflkj
URL Oficial https://chromewebstore.google.com/detail/network-chunks/cdhpofaebcgpabjpdfgfddjhfaloflkj
Descrição Track the chunks fetched over the Network
Tamanho do Arquivo 187 KB
Contagem de Instalações 113
Versão Atual 1.0
Última Atualização 2022-08-05
Data de Publicação 2022-08-05
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor devxmofficial
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://www.sprinklr.com/privacy
Idiomas Suportados 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"
    ]
}