NextJS Utilities Extension
Shows size of NextJS static data and allows for display as formatted JSON from right click on toolbar icon.
What is NextJS Utilities Extension?
NextJS Utilities Extension is a Chrome extension developed by https://www.siliconvalley-codecamp.com, and its main feature is "Shows size of NextJS static data and allows for display as formatted JSON from right click on toolbar icon.".
Extension Screenshots
Download NextJS Utilities Extension Extension CRX File
Download NextJS Utilities Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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/
Extension Basic Information
Name | NextJS Utilities Extension |
ID | ffcogmoganomoabikgmcmckdgojnpldo |
Official URL | https://chromewebstore.google.com/detail/nextjs-utilities-extensio/ffcogmoganomoabikgmcmckdgojnpldo |
Description | Shows size of NextJS static data and allows for display as formatted JSON from right click on toolbar icon. |
File Size | 14.39 KB |
Installation Count | 3,221 |
Current Version | 0.0.0.1 |
Last Updated | 2019-07-06 |
Publish Date | 2019-07-06 |
Rating | 3.67/5 Total 3 Ratings |
Developer | https://www.siliconvalley-codecamp.com |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |