Network explorer
A DevTools extension to interpret network requests in real time within a friendly way.
Network explorer란 무엇입니까?
Network explorer은(는) jacob.lea.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A DevTools extension to interpret network requests in real time within a friendly way."입니다.
확장 프로그램 스크린샷
Network explorer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A DevTools extension to interpret network requests in real time within a friendly way. Main functions: 1. Network requests could be manually / automatically loaded into the extension. 2. Users could define custom filters to load requests they want. 3. It could display these requests in a table. 4. It could transform headers and contents of requests/responses into JSON object and display them as tree-like structures. Currently version only supports pure JSON requests and dwr request. 5. In these tree-like structures, users could copy, download and search nodes. 6. Jsonlizable strings could be detected automatically and show up in popups.
확장 프로그램 기본 정보
이름 | Network explorer |
ID | ejdnjekdoemmcaaaoofkijikbmcfpgfn |
공식 URL | https://chromewebstore.google.com/detail/network-explorer/ejdnjekdoemmcaaaoofkijikbmcfpgfn |
설명 | A DevTools extension to interpret network requests in real time within a friendly way. |
파일 크기 | 223 KB |
설치 횟수 | 203 |
현재 버전 | 2.0.0 |
최근 업데이트 | 2022-04-04 |
출시 날짜 | 2021-05-05 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | jacob.lea.dev |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extName__", "version": "2.0.0", "default_locale": "en", "description": "__MSG_extDescription__", "minimum_chrome_version": "88.0", "icons": { "16": ".\/logos\/16.png", "32": ".\/logos\/32.png", "64": ".\/logos\/64.png", "128": ".\/logos\/128.png" }, "permissions": [ "clipboardWrite", "storage", "tabs" ], "background": { "service_worker": "js\/background.js" }, "devtools_page": "devtools\/startup.html", "options_ui": { "page": "options\/options.html", "open_in_tab": true }, "sandbox": { "pages": [ "sandbox\/eval.html" ] } } |