NextJS Utilities Extension

Shows size of NextJS static data and allows for display as formatted JSON from right click on toolbar icon.

Was ist NextJS Utilities Extension?

NextJS Utilities Extension ist eine Chrome-Erweiterung, die von https://www.siliconvalley-codecamp.com entwickelt wurde, und ihr Hauptmerkmal ist "Shows size of NextJS static data and allows for display as formatted JSON from right click on toolbar icon.".

Erweiterungsscreenshots

screenshot

NextJS Utilities Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie NextJS Utilities Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        A Google Extension that allows for easily viewing the size of the windows.__NEXT_DATA__ static data that is downloaded with every server-side load from the open source NextJS framework (server-side rendering create-react-app replacement built by zeit.co).

You can read all about using this extension on this blog post:

http://peterkellner.net/2019/06/16/a-chrome-extension-for-viewing-serialized-data-in-nextjs/                    

Grundlegende Informationen zur Erweiterung

Name NextJS Utilities Extension NextJS Utilities Extension
ID ffcogmoganomoabikgmcmckdgojnpldo
Offizielle URL https://chromewebstore.google.com/detail/nextjs-utilities-extensio/ffcogmoganomoabikgmcmckdgojnpldo
Beschreibung Shows size of NextJS static data and allows for display as formatted JSON from right click on toolbar icon.
Dateigröße 14.39 KB
Installationsanzahl 3,221
Aktuelle Version 0.0.0.1
Letztes Update 2019-07-06
Veröffentlichungsdatum 2019-07-06
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler https://www.siliconvalley-codecamp.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Shows size of NextJS static data and allows for display as formatted JSON from right click on toolbar icon.",
    "author:": "Peter Kellner, San Francisco CA",
    "manifest_version": 2,
    "name": "NextJS Utilities Extension",
    "version": "0.0.0.1",
    "homepage_url": "https:\/\/github.com\/pkellner\/nextjs-utils-chromium-extension",
    "icons": {
        "32": "icons\/icon-N-32x32.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js",
            "nextjs.js",
            "viewNextData.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "nextjs.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "*"
    ],
    "browser_action": {
        "default_icon": "icons\/icon-N-32x32.png"
    }
}