Add unpacked extension support

Adds an extension manager that loads unpacked extensions from the user data extensions directory, persists enabled state, and injects matching content scripts on page load. The settings Plugins page now shows installed extensions, supports reload/toggle actions, and includes an example Hello Nebula extension.
This commit is contained in:
Andrew Zambazos
2026-07-12 20:21:32 +12:00
parent 487c5fc1ae
commit 924529807f
15 changed files with 861 additions and 16 deletions
+3 -1
View File
@@ -115,7 +115,9 @@ bool NebulaBrowserClient::OnProcessMessageReceived(CefRefPtr<CefBrowser> browser
command == "check-default-browser" ||
command == "set-default-browser" ||
command == "clear-site-history" ||
command == "clear-search-history");
command == "clear-search-history" ||
command == "extensions-reload" ||
command == "extensions-set-enabled");
const bool allowed_setup_command =
IsSetupFrame(frame) && (command == "complete-first-run" ||
command == "check-default-browser" ||