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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Next DevTools एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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": [
                ""
            ],
            "resources": [
                "src\/next-devtools.html",
                "src\/popup.html",
                "src\/panel.html"
            ],
            "use_dynamic_url": false
        }
    ],
    "name": "Next DevTools",
    "version": "1.1.1"
}