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 هو إضافة Chrome تم تطويرها بواسطة 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 للإضافة NextJS Utilities Extension

قم بتنزيل ملفات الامتداد NextJS Utilities Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    }
}