mirror of
https://github.com/Shik3i/KoalaSync.git
synced 2026-07-26 12:08:15 +00:00
13 lines
560 B
Batchfile
13 lines
560 B
Batchfile
@echo off
|
|
REM KoalaSync - Protocol Synchronization Script (Windows)
|
|
REM
|
|
REM This script copies the master constants.js file from the shared directory
|
|
REM to the extension directory. Since Chrome Extensions cannot load files
|
|
REM outside their root, this manual sync is required after any changes to
|
|
REM the shared protocol.
|
|
|
|
if not exist extension\shared mkdir extension\shared
|
|
copy /y shared\constants.js extension\shared\constants.js
|
|
copy /y shared\blacklist.js extension\shared\blacklist.js
|
|
echo ✓ constants.js and blacklist.js synced to extension\shared\
|