v0.1.1
Pre-release
Pre-release
Audio Cutter: Private, offline audio cutting for Firefox and Chrome, entirely in your browser.
Known limitations
- This is a developer preview; signed Firefox and Chrome store listings are coming soon.
- Until the Firefox listing is available, the Firefox package must be loaded as a temporary add-on and is cleared when Firefox restarts.
Verify your download
Download audio-cutter-<version>-chrome.zip, audio-cutter-<version>-firefox.zip, audio-cutter-<version>-sources.zip, and SHA256SUMS, then verify their checksums:
sha256sum -c SHA256SUMSOn macOS:
shasum -a 256 -c SHA256SUMSEach asset also has a keyless GitHub OIDC signature bundle. Verify the checksum file before trusting it:
cosign verify-blob --new-bundle-format --bundle SHA256SUMS.sigstore.json --certificate-identity-regexp '^https://github\.com/animeshkundu/media-tools/\.github/workflows/release\.yml@refs/tags/v[^/]+$' --certificate-oidc-issuer https://token.actions.githubusercontent.com SHA256SUMSTo verify the ZIP bundles directly, replace <version> with the release version:
version='<version>'
for target in chrome firefox sources; do
archive="audio-cutter-${version}-${target}.zip"
cosign verify-blob --new-bundle-format --bundle "${archive}.sigstore.json" --certificate-identity-regexp '^https://github\.com/animeshkundu/media-tools/\.github/workflows/release\.yml@refs/tags/v[^/]+$' --certificate-oidc-issuer https://token.actions.githubusercontent.com "${archive}"
done