Network Chunks
Track the chunks fetched over the Network
Apa itu Network Chunks?
Network Chunks adalah ekstensi Chrome yang dikembangkan oleh devxmofficial, dan fitur utamanya adalah "Track the chunks fetched over the Network".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Network Chunks
Unduh file ekstensi Network Chunks dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Capture the chunks fetched over the Network and copy them to your .env.chunks.local file
Informasi Dasar Ekstensi
Nama | Network Chunks |
ID | cdhpofaebcgpabjpdfgfddjhfaloflkj |
URL Resmi | https://chromewebstore.google.com/detail/network-chunks/cdhpofaebcgpabjpdfgfddjhfaloflkj |
Deskripsi | Track the chunks fetched over the Network |
Ukuran File | 187 KB |
Jumlah Instalasi | 113 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2022-08-05 |
Tanggal Publikasi | 2022-08-05 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | devxmofficial |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | https://www.sprinklr.com/privacy |
Bahasa yang Didukung | 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" ] } |