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 |
官方網址 | 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": [ " |