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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย CraftValue และคุณลักษณะหลักของมันคือ "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…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Next DevTools
ดาวน์โหลดไฟล์ส่วนขยาย 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": [ " |