Network Chunks
Track the chunks fetched over the Network
Cos'è Network Chunks?
Network Chunks è un'estensione di Chrome sviluppata da devxmofficial, e la sua funzione principale è "Track the chunks fetched over the Network".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Network Chunks
Scarica i file di estensione Network Chunks in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Capture the chunks fetched over the Network and copy them to your .env.chunks.local file
Informazioni di Base sull'Estensione
Nome | Network Chunks |
ID | cdhpofaebcgpabjpdfgfddjhfaloflkj |
URL Ufficiale | https://chromewebstore.google.com/detail/network-chunks/cdhpofaebcgpabjpdfgfddjhfaloflkj |
Descrizione | Track the chunks fetched over the Network |
Dimensione del File | 187 KB |
Conteggio Installazioni | 113 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2022-08-05 |
Data di Pubblicazione | 2022-08-05 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | devxmofficial |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://www.sprinklr.com/privacy |
Lingue Supportate | 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" ] } |