Network Chunks
Track the chunks fetched over the Network
什麼是Network Chunks?
Network Chunks是由devxmofficial開發的Chrome擴展程式,該擴展的主要功能是“Track the chunks fetched over the Network”。
擴展截圖
下載Network Chunks擴展crx文件
下載Network Chunks擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Capture the chunks fetched over the Network and copy them to your .env.chunks.local file 擴展基本資訊
| 名稱 | |
| ID | cdhpofaebcgpabjpdfgfddjhfaloflkj |
| 官方網址 | 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"
]
} | |