Network Chunks

Track the chunks fetched over the Network

Co to jest Network Chunks?

Network Chunks to rozszerzenie Chrome opracowane przez devxmofficial, a jego główną funkcją jest „Track the chunks fetched over the Network”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Network Chunks

Pobierz pliki rozszerzeń Network Chunks w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Network Chunks Network Chunks
ID cdhpofaebcgpabjpdfgfddjhfaloflkj
Oficjalny URL https://chromewebstore.google.com/detail/network-chunks/cdhpofaebcgpabjpdfgfddjhfaloflkj
Opis Track the chunks fetched over the Network
Rozmiar pliku 187 KB
Liczba instalacji 113
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2022-08-05
Data Publikacji 2022-08-05
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper devxmofficial
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://www.sprinklr.com/privacy
Obsługiwane Języki 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"
    ]
}