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 là gì?
NextJS Utilities Extension là một tiện ích mở rộng Chrome được phát triển bởi https://www.siliconvalley-codecamp.com, và tính năng chính của nó là "Shows size of NextJS static data and allows for display as formatted JSON from right click on toolbar icon.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng NextJS Utilities Extension
Tải xuống các tệp mở rộng NextJS Utilities Extension 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
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/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | NextJS Utilities Extension |
ID | ffcogmoganomoabikgmcmckdgojnpldo |
URL Chính Thức | https://chromewebstore.google.com/detail/nextjs-utilities-extensio/ffcogmoganomoabikgmcmckdgojnpldo |
Mô tả | Shows size of NextJS static data and allows for display as formatted JSON from right click on toolbar icon. |
Kích Thước Tệp | 14.39 KB |
Số Lần Cài Đặt | 3,221 |
Phiên Bản Hiện Tại | 0.0.0.1 |
Cập Nhật Lần Cuối | 2019-07-06 |
Ngày Phát Hành | 2019-07-06 |
Đánh Giá | 3.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://www.siliconvalley-codecamp.com |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |