Network Chunks
Track the chunks fetched over the Network
Hvad er Network Chunks?
Network Chunks er en Chrome-udvidelse udviklet af devxmofficial, og dens hovedfunktion er "Track the chunks fetched over the Network".
Udvidelsesskærmbilleder
Download Network Chunks-udvidelses-CRX-fil
Download Network Chunks-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Capture the chunks fetched over the Network and copy them to your .env.chunks.local file Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | cdhpofaebcgpabjpdfgfddjhfaloflkj |
| Officiel URL | https://chromewebstore.google.com/detail/network-chunks/cdhpofaebcgpabjpdfgfddjhfaloflkj |
| Beskrivelse | Track the chunks fetched over the Network |
| Filstørrelse | 187 KB |
| Antal Installationer | 113 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2022-08-05 |
| Udgivelsesdato | 2022-08-05 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | devxmofficial |
| [email protected] | |
| Betalingsmetode | free |
| URL til Fortrolighedspolitik Side | https://www.sprinklr.com/privacy |
| Understøttede Sprog | 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"
]
} | |