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…
¿Qué es Next DevTools?
Next DevTools es una extensión de Chrome desarrollada por CraftValue, y su función principal es "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…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Next DevTools
Descarga archivos de extensión Next DevTools en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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).
Información Básica de la Extensión
Nombre | Next DevTools |
ID | admidbamafmdejfidoeijgghcffngbmp |
URL Oficial | https://chromewebstore.google.com/detail/next-devtools/admidbamafmdejfidoeijgghcffngbmp |
Descripción | 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… |
Tamaño del Archivo | 67.98 KB |
Cantidad de Instalaciones | 2,693 |
Versión Actual | 1.1.1 |
Última Actualización | 2024-02-20 |
Fecha de Publicación | 2022-11-14 |
Calificación | 2.00/5 Total de 4 Calificaciones |
Desarrollador | CraftValue |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/gpichot/chrome-extension-next-devtools |
URL de la Página de Ayuda | https://github.com/gpichot/chrome-extension-next-devtools/issues |
Idiomas Soportados | 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": [ " |