Next.js Explorer

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

Next.js Explorer là gì?

Next.js Explorer là một tiện ích mở rộng Chrome được phát triển bởi https://lailolai.com, và tính năng chính của nó là "Quickly check if a webpage is built with Next.js and explore static properties and other useful metrics.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Next.js Explorer

Tải xuống các tệp mở rộng Next.js Explorer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Next.js Explorer Next.js Explorer
ID iiekmbomdcmddchlplbdlkkpdgncgpdg
URL Chính Thức https://chromewebstore.google.com/detail/nextjs-explorer/iiekmbomdcmddchlplbdlkkpdgncgpdg
Mô tả Quickly check if a webpage is built with Next.js and explore static properties and other useful metrics.
Kích Thước Tệp 34.35 KB
Số Lần Cài Đặt 1,076
Phiên Bản Hiện Tại 1.4.1
Cập Nhật Lần Cuối 2023-11-14
Ngày Phát Hành 2023-01-14
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://lailolai.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://lailolai.com/explorer
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}