manifest.json Configuration
In this article, we will provide a detailed explanation of all the supported fields in the manifest.json file for an Eagle plugin.
{
"id": "LBCZE8V6LPCKD",
"version": "1.0.0",
"platform": "all",
"arch": "all",
"name": "Windows Plugin",
"logo": "/logo.png",
"keywords": [],
"devTools": false,
"main":
{
"url": "index.html",
"width": 640,
"height": 480,
"minWidth": 640,
"minHeight": 480,
"maxWidth": 640,
"maxHeight": 480,
"alwaysOnTop": false,
"frame": true,
"fullscreenable": true,
"maximizable": true,
"minimizable": true,
"resizable": true,
"backgroundColor": "#ffffff",
"multiple": false,
"runAfterInstall": false
}
}Example of each field in the manifest.json file for a plugin:
manifest.json file for a plugin:Last updated