Network Chunks
Track the chunks fetched over the Network
Vad är Network Chunks?
Network Chunks är en Chrome-tillägg utvecklad av devxmofficial, och dess huvudfunktion är "Track the chunks fetched over the Network".
Tilläggsskärmbilder
Ladda ner Network Chunks-förlängningens CRX-fil
Ladda ner Network Chunks-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Capture the chunks fetched over the Network and copy them to your .env.chunks.local file Grundläggande Information om Tillägg
| Namn | |
| ID | cdhpofaebcgpabjpdfgfddjhfaloflkj |
| Officiell webbadress | https://chromewebstore.google.com/detail/network-chunks/cdhpofaebcgpabjpdfgfddjhfaloflkj |
| Beskrivning | Track the chunks fetched over the Network |
| Filstorlek | 187 KB |
| Antal Installationer | 113 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2022-08-05 |
| Publiceringsdatum | 2022-08-05 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | devxmofficial |
| E-post | [email protected] |
| Betalningssätt | free |
| URL till Sekretesspolicy Sidan | https://www.sprinklr.com/privacy |
| Stödda Språk | 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"
]
} | |