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?
NextJS Utilities Extension是由https://www.siliconvalley-codecamp.com開發的Chrome擴展程式,該擴展的主要功能是“Shows size of NextJS static data and allows for display as formatted JSON from right click on toolbar icon.”。
擴展截圖
下載NextJS Utilities Extension擴展crx文件
下載NextJS Utilities Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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/ 擴展基本資訊
| 名稱 | |
| ID | ffcogmoganomoabikgmcmckdgojnpldo |
| 官方網址 | https://chromewebstore.google.com/detail/nextjs-utilities-extensio/ffcogmoganomoabikgmcmckdgojnpldo |
| 簡介 | Shows size of NextJS static data and allows for display as formatted JSON from right click on toolbar icon. |
| 檔案大小 | 14.39 KB |
| 安裝次數 | 3,221 |
| 目前版本 | 0.0.0.1 |
| 更新時間 | 2019-07-06 |
| 上架時間 | 2019-07-06 |
| 評分 | 3.67/5 共 3 次評分 |
| 開發者 | https://www.siliconvalley-codecamp.com |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | 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"
}
} | |