Network Chunks
Track the chunks fetched over the Network
Was ist Network Chunks?
Network Chunks ist eine Chrome-Erweiterung, die von devxmofficial entwickelt wurde, und ihr Hauptmerkmal ist "Track the chunks fetched over the Network".
Erweiterungsscreenshots
Network Chunks-Erweiterungs-CRX-Datei herunterladen
Laden Sie Network Chunks-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Capture the chunks fetched over the Network and copy them to your .env.chunks.local file
Grundlegende Informationen zur Erweiterung
Name | Network Chunks |
ID | cdhpofaebcgpabjpdfgfddjhfaloflkj |
Offizielle URL | https://chromewebstore.google.com/detail/network-chunks/cdhpofaebcgpabjpdfgfddjhfaloflkj |
Beschreibung | Track the chunks fetched over the Network |
Dateigröße | 187 KB |
Installationsanzahl | 113 |
Aktuelle Version | 1.0 |
Letztes Update | 2022-08-05 |
Veröffentlichungsdatum | 2022-08-05 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | devxmofficial |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://www.sprinklr.com/privacy |
Unterstützte Sprachen | 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" ] } |