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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة سياسة الخصوصية | 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" ] } |