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文件
下载Next DevTools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装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 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": [ " |