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…

Vad är Next DevTools?

Next DevTools är en Chrome-tillägg utvecklad av CraftValue, och dess huvudfunktion är "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…".

Tilläggsskärmbilder

screenshot

Ladda ner Next DevTools-förlängningens CRX-fil

Ladda ner Next DevTools-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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).                    

Grundläggande Information om Tillägg

Namn Next DevTools Next DevTools
ID admidbamafmdejfidoeijgghcffngbmp
Officiell webbadress https://chromewebstore.google.com/detail/next-devtools/admidbamafmdejfidoeijgghcffngbmp
Beskrivning 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…
Filstorlek 67.98 KB
Antal Installationer 2,693
Aktuell Version 1.1.1
Senast Uppdaterad 2024-02-20
Publiceringsdatum 2022-11-14
Betyg 2.00/5 Totalt 4 Betyg
Utvecklare CraftValue
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/gpichot/chrome-extension-next-devtools
Hjälpsida URL https://github.com/gpichot/chrome-extension-next-devtools/issues
Stödda Språk 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"
}