fixup! Gecko strict compatibility versionining to prevent Chromium-only NoScript 12.x from being accidentally installed on Firefox.

This commit is contained in:
hackademix 2024-11-09 15:59:43 +01:00
parent fcde5e20dc
commit f538c07167
No known key found for this signature in database
GPG Key ID: 231A83AFDA9C2434
1 changed files with 10 additions and 0 deletions

10
manifest.sh Normal file
View File

@ -0,0 +1,10 @@
#!/bin/bash
SRC=src/
if [[ $1 == "2" ]]; then
mv=2
min=128
else
mv=3
min=666
fi
sed -i -re 's/("manifest_version":\s*)[0-9]/\1'$mv'/' -e 's/("strict_min_version":\s*")[0-9]+/\1'$min'/' "$SRC/manifest.json"