2024-09-12 12:54:19 +02:00
|
|
|
#!/bin/bash
|
2024-09-12 12:43:43 +02:00
|
|
|
set -euo pipefail
|
2024-02-18 10:39:19 +01:00
|
|
|
rm -rf out proxy-settings.crx
|
2024-02-18 08:54:29 +01:00
|
|
|
npx tsc
|
2024-02-18 11:16:27 +01:00
|
|
|
cp manifest.json ./*.html out
|
2024-02-18 15:39:48 +01:00
|
|
|
sed "s/{{DATE}}/$(date -u "+%Y.%m.%d")/" -i out/manifest.json
|
2024-02-18 10:39:19 +01:00
|
|
|
npx crx3 -p key.pem -o proxy-settings.crx out
|