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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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": [ " |