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 |
| 公式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 |
| Eメール | [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"
]
} | |