Network Chunks
Track the chunks fetched over the Network
What is Network Chunks?
Network Chunks is a Chrome extension developed by devxmofficial, and its main feature is "Track the chunks fetched over the Network".
Extension Screenshots
Download Network Chunks Extension CRX File
Download Network Chunks extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Capture the chunks fetched over the Network and copy them to your .env.chunks.local file
Extension Basic Information
Name | Network Chunks |
ID | cdhpofaebcgpabjpdfgfddjhfaloflkj |
Official URL | https://chromewebstore.google.com/detail/network-chunks/cdhpofaebcgpabjpdfgfddjhfaloflkj |
Description | Track the chunks fetched over the Network |
File Size | 187 KB |
Installation Count | 113 |
Current Version | 1.0 |
Last Updated | 2022-08-05 |
Publish Date | 2022-08-05 |
Rating | 5.00/5 Total 1 Ratings |
Developer | devxmofficial |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://www.sprinklr.com/privacy |
Supported Languages | 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" ] } |