Rename internal URL scheme from browser:// to nebula://

Replaces all occurrences of the 'browser://' internal URL scheme with 'nebula://' across main process, plugin manager, and renderer files. This change standardizes the internal page scheme to 'nebula://' for improved clarity and branding.
This commit is contained in:
2026-01-18 13:38:26 +13:00
parent 0eb9ec0c9a
commit 681b087f7a
5 changed files with 46 additions and 34 deletions
+1 -1
View File
@@ -1630,7 +1630,7 @@ ipcMain.handle('plugins-get-renderer-preloads', () => {
try { return pluginManager.getRendererPreloads(); } catch { return []; }
});
// Plugins: expose registered internal pages (browser://<id>)
// Plugins: expose registered internal pages (nebula://<id>)
ipcMain.handle('plugins-get-pages', () => {
try { return pluginManager.getRendererPages(); } catch { return []; }
});