NextJS Utilities Extension

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

NextJS Utilities Extension क्या है?

NextJS Utilities Extension https://www.siliconvalley-codecamp.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows size of NextJS static data and allows for display as formatted JSON from right click on toolbar icon."।

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

screenshot

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

crx प्रारूप में NextJS Utilities Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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/                    

एक्सटेंशन की मूल जानकारी

नाम NextJS Utilities Extension NextJS Utilities Extension
ID ffcogmoganomoabikgmcmckdgojnpldo
आधिकारिक URL https://chromewebstore.google.com/detail/nextjs-utilities-extensio/ffcogmoganomoabikgmcmckdgojnpldo
विवरण Shows size of NextJS static data and allows for display as formatted JSON from right click on toolbar icon.
फ़ाइल का आकार 14.39 KB
स्थापना संख्या 3,221
वर्तमान संस्करण 0.0.0.1
अंतिम अपडेट 2019-07-06
प्रकाशन तिथि 2019-07-06
रेटिंग 3.67/5 कुल 3 रेटिंग्स
डेवलपर https://www.siliconvalley-codecamp.com
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}