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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}