Next.js Explorer

Quickly check if a webpage is built with Next.js and explore static properties and other useful metrics.

Next.js Explorer란 무엇입니까?

Next.js Explorer은(는) https://lailolai.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly check if a webpage is built with Next.js and explore static properties and other useful metrics."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Next.js Explorer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        For Next.js Page Router only.

Find out all about this extension on:

http://lailolai.com/explorer/


# How it works?

Click the extension icon to explore & export Next.js __NEXT_DATA__ object.

Or check the icon color:

- If the icon is GREEN: page data is OPTIMAL
- If the icon is RED: static data exceeds 128Kb default threshold (large page data)

If the icon is neither red or green (it is black), it means the website is not build with Nextjs framework.


# Changelog

## [1.4.1] - 2023-09-09

- Fixed minor bugs

## [1.4.0] - 2023-08-12

- Added sizing information in JSON view
- Fixed minor bugs

## [1.3.0] - 2023-08-08

- Improved UX
- Fixed minor bugs

## [1.2.0] - 2023-04-23

- Added theme light & dark mode
- Removed console logs
- Fixed minor bugs

## [1.1.0] - 2023-02-04

- Fixed JSON view bugs and other extenison bugs
- Updated icons for better understanding
- Show message when Next.js is not available and user clicks the extension icon                    

확장 프로그램 기본 정보

이름 Next.js Explorer Next.js Explorer
ID iiekmbomdcmddchlplbdlkkpdgncgpdg
공식 URL https://chromewebstore.google.com/detail/nextjs-explorer/iiekmbomdcmddchlplbdlkkpdgncgpdg
설명 Quickly check if a webpage is built with Next.js and explore static properties and other useful metrics.
파일 크기 34.35 KB
설치 횟수 1,076
현재 버전 1.4.1
최근 업데이트 2023-11-14
출시 날짜 2023-01-14
평점 5.00/5 총 1 개의 평점
개발자 https://lailolai.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://lailolai.com/explorer
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Next.js Explorer",
    "description": "Quickly check if a webpage is built with Next.js and explore static properties and other useful metrics.",
    "version": "1.4.1",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/message.css"
            ],
            "js": [
                "scripts\/content.js"
            ]
        }
    ],
    "incognito": "split",
    "background": {
        "service_worker": "scripts\/background.js",
        "type": "module"
    },
    "action": {
        "default_title": "Click to explore Next.js page properties or open the web inspector to get Next.js metrics",
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        }
    }
}