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によって開発されたChromeの拡張機能で、その主な機能は「Shows size of NextJS static data and allows for display as formatted JSON from right click on toolbar icon.」です。

拡張機能のスクリーンショット

screenshot

NextJS Utilities Extension拡張機能のCRXファイルをダウンロード

NextJS Utilities Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}