Network Chunks
Track the chunks fetched over the Network
Network Chunksคืออะไร?
Network Chunks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย devxmofficial และคุณลักษณะหลักของมันคือ "Track the chunks fetched over the Network"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Network Chunks
ดาวน์โหลดไฟล์ส่วนขยาย Network Chunks ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Capture the chunks fetched over the Network and copy them to your .env.chunks.local file
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Network Chunks |
ID | cdhpofaebcgpabjpdfgfddjhfaloflkj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/network-chunks/cdhpofaebcgpabjpdfgfddjhfaloflkj |
คำอธิบาย | Track the chunks fetched over the Network |
ขนาดไฟล์ | 187 KB |
จำนวนการติดตั้ง | 113 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2022-08-05 |
วันที่เผยแพร่ | 2022-08-05 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | devxmofficial |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://www.sprinklr.com/privacy |
ภาษาที่รองรับ | 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" ] } |