e228ca6317
Introduces a plugin architecture, including a PluginManager, plugin loading in main and renderer processes, and a sample plugin demonstrating menu, IPC, and context menu contributions. Adds a Plugins tab to the settings UI for managing plugins (enable/disable, reload), and updates preload.js to load renderer preloads from plugins. Documentation for plugin development is included in README-PLUGINS.md.
9 lines
253 B
JSON
9 lines
253 B
JSON
{
|
|
"id": "sample-hello",
|
|
"name": "Sample Hello Plugin",
|
|
"version": "0.1.0",
|
|
"description": "Demonstrates Nebula plugin basics: add menu item and renderer API.",
|
|
"main": "main.js",
|
|
"rendererPreload": "renderer-preload.js",
|
|
"enabled": false
|
|
} |