-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_extension.bat
More file actions
38 lines (34 loc) · 1.57 KB
/
Copy pathsetup_extension.bat
File metadata and controls
38 lines (34 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@echo off
setlocal enabledelayedexpansion
title Cortex Speed — Extension Setup Helper
cd /d "%~dp0"
echo.
echo ╔══════════════════════════════════════════════╗
echo ║ Cortex Speed — Extension Setup Helper ║
echo ╚══════════════════════════════════════════════╝
echo.
echo STEP 1: Open Chrome and go to: chrome://extensions/
echo STEP 2: Make sure "Developer mode" is ON (top right)
echo STEP 3: Find "Cortex Speed Interceptor"
echo STEP 4: Copy the ID shown below the extension name
echo.
set /p EXT_ID="Paste the Extension ID here and press Enter: "
if "%EXT_ID%"=="" (
echo ERROR: No ID entered!
pause
exit /b 1
)
echo.
echo Extension ID registered: %EXT_ID%
echo.
echo ╔══════════════════════════════════════════════╗
echo ║ DONE! Now: ║
echo ║ 1. Start the Cortex Speed app (run.bat) ║
echo ║ 2. Try downloading a file! ║
echo ║ ║
echo ║ Communication flow: ║
echo ║ Browser → localhost:19256 (HTTP) ║
echo ║ ║
echo ╚══════════════════════════════════════════════╝
echo.
pause