Network Chunks

Track the chunks fetched over the Network

Wat is Network Chunks?

Network Chunks is een Chrome-extensie ontwikkeld door devxmofficial, en de belangrijkste functie is "Track the chunks fetched over the Network".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Network Chunks

Download Network Chunks-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Network Chunks Network Chunks
ID cdhpofaebcgpabjpdfgfddjhfaloflkj
Officiële URL https://chromewebstore.google.com/detail/network-chunks/cdhpofaebcgpabjpdfgfddjhfaloflkj
Beschrijving Track the chunks fetched over the Network
Bestandsgrootte 187 KB
Aantal Installaties 113
Huidige Versie 1.0
Laatst Bijgewerkt 2022-08-05
Publicatiedatum 2022-08-05
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar devxmofficial
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://www.sprinklr.com/privacy
Ondersteunde Talen 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"
    ]
}