Next DevTools
Quickly check the props of a NextJS website, inspect all props on hover. Add a badge icon to indicate when the page props for a…
Next DevTools란 무엇입니까?
Next DevTools은(는) CraftValue에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly check the props of a NextJS website, inspect all props on hover. Add a badge icon to indicate when the page props for a…"입니다.
확장 프로그램 스크린샷
Next DevTools 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Quickly check the props of a NextJS website, inspect all props on hover. Add a badge icon to indicate when the page props for a given page are too heavy in NextJS. It will only works for first page load. When using the `Link` component you may consider have a look at the "NextJS DevTools" panel that this extension is adding in the DevTools. Icons are from the CoreUI Icons set (see https://github.com/coreui/coreui-icons?ref=iconduck.com).
확장 프로그램 기본 정보
이름 | Next DevTools |
ID | admidbamafmdejfidoeijgghcffngbmp |
공식 URL | https://chromewebstore.google.com/detail/next-devtools/admidbamafmdejfidoeijgghcffngbmp |
설명 | Quickly check the props of a NextJS website, inspect all props on hover. Add a badge icon to indicate when the page props for a… |
파일 크기 | 67.98 KB |
설치 횟수 | 2,693 |
현재 버전 | 1.1.1 |
최근 업데이트 | 2024-02-20 |
출시 날짜 | 2022-11-14 |
평점 | 2.00/5 총 4 개의 평점 |
개발자 | CraftValue |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/gpichot/chrome-extension-next-devtools |
도움말 페이지 URL | https://github.com/gpichot/chrome-extension-next-devtools/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "minimum_chrome_version": "88.0", "devtools_page": "src\/next-devtools.html", "action": { "default_icon": { "16": "public\/icon.png", "32": "public\/icon.png", "48": "public\/icon.png", "128": "public\/icon.png" }, "default_popup": "src\/popup.html" }, "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "permissions": [ "tabs", "scripting" ], "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "web_accessible_resources": [ { "matches": [ " |