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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quickly check if a webpage is built with Next.js and explore static properties and other useful metrics."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Next.js Explorer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    }
}