Network Chunks
Track the chunks fetched over the Network
Qu'est-ce que Network Chunks ?
Network Chunks est une extension Chrome développée par devxmofficial, et sa fonction principale est "Track the chunks fetched over the Network".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Network Chunks
Téléchargez les fichiers d'extension Network Chunks au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Capture the chunks fetched over the Network and copy them to your .env.chunks.local file
Informations de Base sur l'Extension
Nom | Network Chunks |
ID | cdhpofaebcgpabjpdfgfddjhfaloflkj |
URL Officiel | https://chromewebstore.google.com/detail/network-chunks/cdhpofaebcgpabjpdfgfddjhfaloflkj |
Description | Track the chunks fetched over the Network |
Taille du Fichier | 187 KB |
Nombre d'Installations | 113 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2022-08-05 |
Date de Publication | 2022-08-05 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | devxmofficial |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://www.sprinklr.com/privacy |
Langues Prises en Charge | 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" ] } |