Initial snapshot before step 6 options.js split

This commit is contained in:
admin
2026-05-22 21:05:21 +02:00
commit f8e781f0e9
26 changed files with 9741 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
@echo off
REM Double-click this to register the native messaging host with Brave.
REM Prompts for the extension ID, then runs install-host.ps1.
setlocal
set /p EXT_ID="Paste the rclone-jav extension ID from brave://extensions: "
if "%EXT_ID%"=="" (
echo No ID entered. Aborting.
pause
exit /b 1
)
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0install-host.ps1" -ExtensionId "%EXT_ID%"
echo.
echo Done. Press any key to close.
pause >nul