build-extension.sh 489 B

12345678
  1. #!/bin/sh
  2. rm singlefile-extension-firefox.zip singlefile-extension-chromium.zip
  3. cp manifest.json manifest.copy.json
  4. jq "del(.options_page,.background.persistent)" manifest.copy.json > manifest.json
  5. zip -r singlefile-extension-firefox.zip manifest.json extension lib _locales
  6. jq "del(.applications,.permissions[0],.options_ui.browser_style)" manifest.copy.json > manifest.json
  7. zip -r singlefile-extension-chromium.zip manifest.json extension lib _locales
  8. mv manifest.copy.json manifest.json